Skip to content

Commit

Permalink
Tell pytest to use current/root folder as working directory (#178)
Browse files Browse the repository at this point in the history
Co-authored-by: Ilya Isaev <[email protected]>
  • Loading branch information
IsaevIlya and IsaevIlya authored Mar 12, 2024
1 parent 69f32ff commit c52bcc2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/python-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,11 @@ jobs:
python -m pip install -e "s3torchbenchmarking[test]"
- name: s3torchconnectorclient unit tests
run: pytest s3torchconnectorclient/python/tst/unit --hypothesis-profile ci --hypothesis-show-statistics
run: pytest s3torchconnectorclient/python/tst/unit --hypothesis-profile ci --hypothesis-show-statistics -c ./
- name: s3torchconnector unit tests
run: pytest s3torchconnector/tst/unit --ignore s3torchconnector/tst/unit/lightning --hypothesis-profile ci --hypothesis-show-statistics
run: pytest s3torchconnector/tst/unit --ignore s3torchconnector/tst/unit/lightning --hypothesis-profile ci --hypothesis-show-statistics -c ./
- name: s3torchbenchmarking unit tests
run: pytest s3torchbenchmarking/tst --hypothesis-profile ci --hypothesis-show-statistics
run: pytest s3torchbenchmarking/tst --hypothesis-profile ci --hypothesis-show-statistics -c ./

lint:
name: Python lints
Expand Down

0 comments on commit c52bcc2

Please sign in to comment.