summaryrefslogtreecommitdiff
path: root/pytest.ini
diff options
context:
space:
mode:
Diffstat (limited to 'pytest.ini')
-rw-r--r--pytest.ini47
1 files changed, 0 insertions, 47 deletions
diff --git a/pytest.ini b/pytest.ini
deleted file mode 100644
index 764e171..0000000
--- a/pytest.ini
+++ /dev/null
@@ -1,47 +0,0 @@
-#
-# http://doc.pytest.org/en/latest/customize.html#builtin-configuration-file-options
-# https://pytest-django.readthedocs.io/en/latest/
-
-[pytest]
-testpaths = creole
-addopts =
- --verbose
-
- # coverage:
- --cov=.
- --cov-report term-missing
- --no-cov-on-fail
-
- # Disabling warning capture
- #-p no:warnings
-
- --showlocals
- #--trace-config
- --doctest-modules
-
- # Do not cut tracebacks (somethimes helpfull):
- #--full-trace
-
- # per-test capturing method: one of fd|sys|no:
- #--capture=no
-
- # run the last failures first:
- --failed-first
-
- # re-run only failures:
- #--last-failed
-
- # run all tests if no tests failed in the last run:
- --last-failed-no-failures all
-
- # sort new tests first:
- --new-first
-
-# coverage
-# https://pytest-cov.readthedocs.io/en/latest/config.html
-[run]
-source = .
-branch = True
-parallel = True
-omit =
- */tests/*.py