Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ jobs:
header: Code coverage report
recreate: true
path: code-coverage-results.md
GITHUB_TOKEN: ${{ secrets.BENCHMARK_TOKEN }}
- name: Clear previous benchmark report
if: ${{ github.event_name == 'push' }}
env:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,5 +44,5 @@ jobs:
isort --profile black . --check
- name: Test with pytest
run: |
python -m pip install pytest pytest-benchmark
pytest
python -m pip install pytest pytest-cov pytest-benchmark coverage
pytest --cov-report=term-missing --cov-config=pyproject.toml --cov=bigtree
2 changes: 1 addition & 1 deletion docs/home/contributing.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ Run the following lines of code and ensure the <mark>unit tests pass</mark> and
<mark>code coverage is 100%</mark>.

```console
$ python -m pip install pytest coverage
$ python -m pip install pytest pytest-cov coverage
$ pytest --cov-report=term-missing --cov-config=pyproject.toml --cov=bigtree
```

Expand Down