Skip to content

Commit

Permalink
Add dep for run test in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolargo committed Dec 28, 2024
1 parent 8fb49d9 commit b33cd3f
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install pytest
if [ -f dev-requirements.txt ]; then python -m pip install -r dev-requirements.txt; fi
if [ -f requirements.txt ]; then python -m pip install -r requirements.txt; fi
- name: Unitary tests
Expand Down Expand Up @@ -84,7 +84,7 @@ jobs:
# - name: Install dependencies
# run: |
# python -m pip install --upgrade pip
# pip install pytest
# if (Test-Path -PathType Leaf "dev-requirements.txt") { python -m pip install -r dev-requirements.txt }
# if (Test-Path -PathType Leaf "requirements.txt") { python -m pip install -r requirements.txt }
# pip install .

Expand Down Expand Up @@ -115,7 +115,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install pytest
if [ -f dev-requirements.txt ]; then python -m pip install -r dev-requirements.txt; fi
if [ -f requirements.txt ]; then python -m pip install -r requirements.txt; fi
- name: Unitary tests
Expand All @@ -141,5 +141,6 @@ jobs:
# run: |
# set -e -x
# python3 -m pip install pytest
# python3 -m pip install --user -r dev-requirements.txt
# python3 -m pip install --user -r requirements.txt
# python3 -m pytest ./tests/test_core.py

0 comments on commit b33cd3f

Please sign in to comment.