Skip to content

Bandit v1.1.0

Compare
Choose a tag to compare
@joakimkarlsson joakimkarlsson released this 10 Aug 15:59
· 489 commits to master since this release

Skipping Tests

It's now possible to skip tests.

From within code by using describe_skip() or it_skip().

From command line by using the --skip=<substring> option. This will skip all describe() or it() whose names contain <substring>

Running Subset of Tests

It's now possible to run a subset of the tests by using the --only=<substring> command line options. This will only run those describe() and it() whose names matches <substring>.

Spec Reporter

This progress reporter prints out all 'describe' and 'it' together with their execution status, resulting in a summary of all your specifications. The spec reporter can be selected by passing the --reporter=spec command line option to the bandit executable.

(fix) The executable returns an error code if no tests are registered.