What happened to all the flags?
verbose: PyTest captures all stdout, so if a test fails, you can see the steps.
remove_exhausted_ballots: Always set to False
no_fail_exit: All tests in PyTest are handled independently
permute: Always on. We can do a permutation test in the future.
What happened to all the flags?
verbose
: PyTest captures all stdout, so if a test fails, you can see the steps.remove_exhausted_ballots
: Always set to Falseno_fail_exit
: All tests in PyTest are handled independentlypermute
: Always on. We can do a permutation test in the future.