Skip to content

Commit

Permalink
fix paths in test action?
Browse files Browse the repository at this point in the history
  • Loading branch information
eivankin committed Jul 4, 2024
1 parent f016524 commit 1ef379d
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 @@ -42,11 +42,11 @@ jobs:
run: poetry install

- name: Run tests (small dataset)
working-directory: ./pwdkek-python
run: |
python tests/test.py --dataset_path datasets/rockyou-utf8-filtered-sorted.txt.gz
cd pwdkek-python
python tests/test.py --dataset_path ../datasets/rockyou-utf8-filtered-sorted.txt.gz
- name: Run tests (big dataset)
working-directory: ./pwdkek-python
run: |
poetry tests/test.py --dataset_path datasets/crackstation-human-only-utf8-filtered-sorted.txt.gz
cd pwdkek-python
poetry tests/test.py --dataset_path ../datasets/crackstation-human-only-utf8-filtered-sorted.txt.gz

0 comments on commit 1ef379d

Please sign in to comment.