Skip to content

Commit

Permalink
Update pytest options
Browse files Browse the repository at this point in the history
  • Loading branch information
kushalbakshi committed May 17, 2023
1 parent 4796a9d commit eb3bd43
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "--capture=tee-sys -p no:warnings --dj-teardown False --dj-verbose True --sw --cov=element_zstack --cov-report term-missing"
addopts = "--capture=tee-sys -p no:warnings --sw"
# Verbosity: -v for pytest more verbose
# Warnings: -p no:warnings to disable
# Stepwise: --sw to restart pytest at last failure point
# Debug: --pdb enter debug mode on first failure
# Capturing output: -s for none, --capture=tee-sys for both stdout and stderr
# Coverage: --cov={package} - package for which we're measuring coverage
# Coverage report: --cov-report term-missing send report to stdout with line numbers of missed
# Custom teardown: --dj-teardown {True, False} to teardown tables,
# Custom verbose: --dj-verbose {True,False} print out dj info like table inserts
testpaths = [
"tests",
]
Expand Down

0 comments on commit eb3bd43

Please sign in to comment.