Jan Dittberner
c94f20f83f
This commit adds a test suite in tests.py, the added setup.cfg contains configuration for coverage, pep8 and flake8. Output files of coverage are ignored. The commit also adds requirements files for tests.
16 lines
215 B
INI
16 lines
215 B
INI
[pep8]
|
|
exclude = migrations
|
|
|
|
[flake8]
|
|
exclude = migrations,.ropeproject/*
|
|
|
|
[coverage:run]
|
|
source = .
|
|
branch = True
|
|
|
|
[coverage:report]
|
|
omit = tests.py
|
|
show_missing = True
|
|
|
|
[coverage:html]
|
|
directory = coverage-report
|