Skip to content

Commit

Permalink
Fix path in anaconda workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
sbaldu committed Dec 15, 2023
1 parent 6a5ca12 commit 2bf0f1b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/python-package-anaconda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,11 @@ jobs:
# flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
# flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Install locally
working-directory: ${{github.workspace}}
run: |
pip install .
- name: Test with pytest
working-directory: ${{github.workspace}}/tests
run: |
pip install .
python3 -m pytest ./*.py

0 comments on commit 2bf0f1b

Please sign in to comment.