In the projects I work on, test files are suffixed with _spec.py instead of _test.py as we follow more of a BDD format. Test names don't start with test_ but instead start with one of: ensure_, it_, must_, should_
It would be great if there was a way to append _spec.py to the list of files checked so we can customise the behaviour a little more.
In the projects I work on, test files are suffixed with
_spec.pyinstead of_test.pyas we follow more of a BDD format. Test names don't start withtest_but instead start with one of:ensure_,it_,must_,should_It would be great if there was a way to append
_spec.pyto the list of files checked so we can customise the behaviour a little more.