Skip to content

Commit

Permalink
coala-bears: Add setup.cfg with pytest configs
Browse files Browse the repository at this point in the history
AbdealiLoKo committed Feb 19, 2016
1 parent be55bd3 commit 2a4fb43
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
[pytest]
norecursedirs =
.git
dist
build
venv
.env
testpaths =
bears
python_files = *Test.py
python_classes = *Test
python_functions = *_test
timeout = 35
addopts = --color=yes
env =
PYTHONHASHSEED=0
# PYTHONHASHSEED=0 is required to use same hashes in pytests-xdist's workers

[coverage:run]
branch = True
cover_pylib = False
source =
bears
omit = */tests/*

[coverage:report]
show_missing = True

0 comments on commit 2a4fb43

Please sign in to comment.