Skip to content

Commit

Permalink
Explicitly call python to run pytest on CI, so CWD gets loaded into p…
Browse files Browse the repository at this point in the history
…ath.
  • Loading branch information
tanaya-mankad committed Dec 18, 2023
1 parent 0492713 commit 12277c0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,5 @@ jobs:
- name: Test
run: |
source $VENV
poetry run pytest
poetry run python -m pytest
4 changes: 2 additions & 2 deletions .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -581,5 +581,5 @@ min-public-methods=2

# Exceptions that will emit a warning when being caught. Defaults to
# "BaseException, Exception".
overgeneral-exceptions=BaseException,
Exception
overgeneral-exceptions=builtins.BaseException,
builtins.Exception

0 comments on commit 12277c0

Please sign in to comment.