Skip to content

Commit

Permalink
Fix path to test requirements in test.yml Actions workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
althonos committed Oct 21, 2024
1 parent d783d33 commit 058fe50
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
run: python -m pip install --prefer-binary numpy
if: ${{ !startsWith(matrix.python-version, 'pypy') }}
- name: Install tests requirements
run: python -m pip install --prefer-binary -r pyfastani/tests/requirements.txt
run: python -m pip install --prefer-binary -r src/pyfastani/tests/requirements.txt
- name: Test package
run: python -m unittest discover -vv

Expand Down Expand Up @@ -128,7 +128,7 @@ jobs:
if: ${{ !startsWith(matrix.python-version, 'pypy') }}
run: python -m pip install --prefer-binary numpy
- name: Install tests requirements
run: python -m pip install --prefer-binary -r pyfastani/tests/requirements.txt
run: python -m pip install --prefer-binary -r src/pyfastani/tests/requirements.txt
- name: Test package
run: python -m unittest discover -vv

Expand Down Expand Up @@ -178,7 +178,7 @@ jobs:
# - name: Build C extension
# run: python setup.py build_ext --inplace
# - name: Install tests requirements
# run: python -m pip install -r pyfastani/tests/requirements.txt
# run: python -m pip install -r src/pyfastani/tests/requirements.txt
# - name: Test package
# run: python -m unittest discover -vv

Expand Down Expand Up @@ -211,7 +211,7 @@ jobs:
- name: Install numpy
run: python -m pip install --prefer-binary numpy
- name: Install tests requirements
run: python -m pip install --prefer-binary -r pyfastani/tests/requirements.txt
run: python -m pip install --prefer-binary -r src/pyfastani/tests/requirements.txt
- name: Test with coverage
run: python -m coverage run -m unittest discover -vv
- name: Upload to Codecov
Expand Down

0 comments on commit 058fe50

Please sign in to comment.