Skip to content

Commit

Permalink
debugging github runner
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrewq11 committed Nov 12, 2024
1 parent fe714d7 commit 938ea74
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,10 @@ jobs:
run: python -m pip install --no-deps --no-build-isolation -e . -v # `-e` required for correct `coverage` run.

- name: Run tests
run: pytest
run: |
export PATH="$CONDA_PREFIX/Library/bin:$PATH"
echo "Current PATH: $PATH"
pytest
- name: Test CLI
run: graphium --help
Expand Down

0 comments on commit 938ea74

Please sign in to comment.