These tests are pytest tests.
pytest -vx --flake8
# -v / --verbose:
# allows you to see the names etc of individual tests etc.
# -x / --exitfirst:
# to stop running tests of first error
# --flake8:
# use pytest-flake8 to add some static code analysis tests
# -k:
# only run tests which match the given substring
--push
or--force-push
- pytest
- Fixture: capfd
- Fixture: monkeypatching
- pytest-flake8 and
pyflakes for passive code check tests
added to the other pytest tests when using the
--flakes
flag withpytest
. - GitPython