Skip to content

Commit

Permalink
Added logging for debugging (#3)
Browse files Browse the repository at this point in the history
Fixed CI issue
  • Loading branch information
MrParosk committed Sep 9, 2023
1 parent b93c700 commit 8b86e93
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
python -m pip install torch==2.0.1+cpu -f https://download.pytorch.org/whl/torch_stable.html
- name: Code coverage
run: |
python -m pip install -e .
python -m pip install --no-build-isolation -e .
pytest --cov=pt_soft_nms --cov-report=xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
Expand All @@ -73,7 +73,7 @@ jobs:
- name: Install package
run: |
python -m pip install -r requirements-dev.txt
python -m pip install .
python -m pip install --no-build-isolation .
- name: Run unit tests
run: |
pytest tests/
Expand All @@ -97,7 +97,7 @@ jobs:
python -m pip install torch==2.0.1+cpu -f https://download.pytorch.org/whl/torch_stable.html
- name: Install package
run: |
python -m pip install .
python -m pip install --no-build-isolation .
env:
DISTUTILS_USE_SDK: 1
- name: Run unit tests
Expand Down
1 change: 1 addition & 0 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ mypy==1.5.1
pre-commit==3.3.3
pytest==7.4.0
pytest-cov==4.1.0
wheel==0.41.2

0 comments on commit 8b86e93

Please sign in to comment.