-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
49 lines (44 loc) · 1.21 KB
/
setup.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
; Application configs
[github_reporter]
base_page_title = PUL GitHub Issues
github_repo_name = issue-reporter
branch = master
github_org = jpstroop
timezone = America/New_York
; pipenv run py.test -h to see options
; More: https://docs.pytest.org/en/3.4.2/customize.html#adding-default-options
[tool:pytest]
addopts =
--cache-clear
-ra
--cov-report term-missing:skip-covered
--cov-report html:cov_html
--cov=github_reporter
tests/
cache_dir = /tmp/pytest_cache
python_files = *_tests.py
python_classes = *Tests
testpaths = tests
console_output_style = count
; Options for coverage.py test coverage
; See: http://coverage.readthedocs.io/en/latest/source.html#source
; and: http://coverage.readthedocs.io/en/latest/config.html
[coverage:run]
branch = True
source = github_reporter
; Regexes for lines to exclude from consideration
; See http://coverage.readthedocs.io/en/latest/excluding.html#excluding
[coverage:report]
exclude_lines =
pragma: no cover
def __repr__
raise AssertionError
raise NotImplementedError
if __name__ == .__main__.:
ignore_errors = True
; [testenv:flake8-py3]
; basepython = python3.7
; commands=
; {[testenv]deps}
; pipenv install --dev
; pipenv run flake8 --version