Skip to content

Commit

Permalink
add venv activation at the pytest step of colab test
Browse files Browse the repository at this point in the history
  • Loading branch information
kangwonlee authored Nov 2, 2024
1 parent ef51652 commit 2d974e6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/conda_env_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,9 @@ jobs:
- name: pytest
env:
TEST_IPYNB_IGNORE_FOLDER: tutorial
run: python -m pytest -n auto -k 'not (links or update_nmisp_py)' ./tests
run: |
source my_env/bin/activate
python -m pytest -n auto -k 'not (links or update_nmisp_py)' ./tests
update_nmisp_py:
needs: [test_ipynb, test_ipynb_colab]
Expand Down

0 comments on commit 2d974e6

Please sign in to comment.