Skip to content
Merged
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
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ commands =
# Bandit is not needed on diffcov, and seems to be incompatible with 310
# So, run only if "not (310 or diffcov)" ==> "(not 310) and (not diffcov)"
!py310-!diffcov: bandit -c bandit.yml -r aiosmtpd
nocov: pytest --verbose -p no:cov --tb=short {posargs}
nocov: pytest --verbose --no-cov --tb=short {posargs}
cov: pytest --cov --cov-report=xml --cov-report=html --cov-report=term --tb=short {posargs}
diffcov: diff-cover _dump/coverage-{env:INTERP}.xml --html-report htmlcov/diffcov-{env:INTERP}.html
diffcov: diff-cover _dump/coverage-{env:INTERP}.xml --fail-under=100
Expand All @@ -31,7 +31,7 @@ deps =
!nocov: coverage>=7.0.1
!nocov: coverage[toml]
!nocov: coverage-conditional-plugin
!nocov: pytest-cov
pytest-cov
diffcov: diff_cover
setenv =
cov: COVERAGE_FILE={toxinidir}/_dump/.coverage
Expand Down
Loading