From 3c0e4c90696031da257e17c5517c1db7c2a7b803 Mon Sep 17 00:00:00 2001 From: Mehdi Seifi Date: Fri, 8 Nov 2024 21:45:19 +0100 Subject: [PATCH] another try to fix conda init error --- .github/workflows/test_deploy_conda.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test_deploy_conda.yml b/.github/workflows/test_deploy_conda.yml index f44e90f..d60494c 100644 --- a/.github/workflows/test_deploy_conda.yml +++ b/.github/workflows/test_deploy_conda.yml @@ -50,8 +50,8 @@ jobs: - name: Install Windows OpenGL if: runner.os == 'Windows' run: | - conda init - conda activate ff + # conda init + $CONDA/bin/activate ff git clone --depth 1 https://github.com/pyvista/gl-ci-helpers.git powershell gl-ci-helpers/appveyor/install_opengl.ps1 @@ -59,8 +59,9 @@ jobs: uses: aganders3/headless-gui@v2.2 with: run: | - conda init - conda activate ff + # conda init + # source ~/.bash_profile + $CONDA/bin/activate ff python -m pip install .[dev] pytest -v --color=yes --cov=featureforest --cov-report=xml -m "not slow"