Releases: darrenburns/ward
0.39.0b0
Show failure location for all AssertionErrors (even those not involving a comparison and therefore not rewritten). Thanks @jayeshathila!
0.38.0b0
Changes diff reprs to use pprintpp
instead of pprint
. This will make diff output look nicer, and typically pep8 compliant.
0.37.0b0
Adds support for async
test and fixture definitions.
0.36.0b0
Adds --dry-run
option, which allows you to print the tests that Ward collects without actually executing them or their dependencies. Thanks to @DorianCzichotzki!
0.35.0b0
Adds ability to display the N slowest tests after a test run completes using --show-slowest N
. Thanks @onlyanegg for this contribution!
0.34.0b0
0.33.2b0
Fixes parsing of indented tests.
0.33.1b0
0.33.0b0
Adds --exclude
command line option, allowing you to specify glob patterns of files/directories to ignore when searching for tests. Can be supplied in pyproject.toml
too, like so:
[tool.ward]
exclude = ["glob1", "glob2"]
0.32.1b0
Fixes issue where --path
expected a directory, and didn't allow a module to be passed directly.