Skip to content

Commit

Permalink
add activation lines
Browse files Browse the repository at this point in the history
  • Loading branch information
kangwonlee authored Nov 2, 2024
1 parent 0744655 commit b032aec
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/conda_env_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,19 +25,25 @@ jobs:
cache-dependency-glob: "utils/requirements.txt"

- name: Create venv
run: uv venv
run: uv venv my_env

- name: setup environment
id: setup
run: uv pip install -r ./utils/requirements.txt
run: |
source my_env/bin/activate
echo "before ====="
uv pip list
uv pip install -r ./utils/requirements.txt
- name: list packages
id: list_pakcages
run: uv pip list

- name: check utils
id: check_utils
run: python -m pytest -n auto ./utils/tests/
run: |
source my_env/bin/activate
python -m pytest -n auto ./utils/tests/
badges:
name: Add Google Colab Badges
Expand Down

0 comments on commit b032aec

Please sign in to comment.