Skip to content

Commit

Permalink
remove unnecessary requirements for tests (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
JIy3AHKO authored Jun 4, 2024
1 parent f269019 commit 9118e7d
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 5 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ jobs:
python3 -m pip install .
- name: Test with pytest
run: |
python3 -m pip install -r test-requirements.txt
python3 -m unittest discover tests/
build-and-test-macos:
Expand All @@ -47,7 +46,6 @@ jobs:
python3 -m pip install .
- name: Test with pytest
run: |
python3 -m pip install -r test-requirements.txt
python3 -m unittest discover tests/
build-and-test-windows:
Expand All @@ -67,5 +65,4 @@ jobs:
python3 -m pip install .
- name: Test with pytest
run: |
python3 -m pip install -r test-requirements.txt
python3 -m unittest discover tests/
2 changes: 1 addition & 1 deletion BENCHMARK.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Benchmark
You can run benchmark locally with:

```bash
pip install -r test-requirements.txt
pip install -r benchmark/requirements.txt
python benchmark/run_benchmark.py --images-dir <dir_with_test_images> --n-iterations 1000
```

Expand Down
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,6 @@ Testing
---------
To run tests, use the following command:
```bash
pip install -r test-requirements.txt
python -m unittest discover tests/
```

Expand Down
File renamed without changes.

0 comments on commit 9118e7d

Please sign in to comment.