-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpytest.ini
More file actions
34 lines (29 loc) · 780 Bytes
/
pytest.ini
File metadata and controls
34 lines (29 loc) · 780 Bytes
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
# Configuration of py.test
[pytest]
# Run each test in an isolated environment
# Ignore specialised tests
# Our test plugins
# Verbose
addopts=-v
--pep8
-n0
--basetemp=.pytest_tmp
--durations=10
# Be more specific about what tests to find
python_files=test_*.py
python_classes=Test
python_functions=test_
norecursedirs= venv
# PEP-8 The following are ignored:
# E251 unexpected spaces around keyword / parameter equals
# E225 missing whitespace around operator
# E226 missing whitespace around arithmetic operator
# W291 trailing whitespace
# W293 blank line contains whitespace
# E501 line too long (82 > 79 characters)
pep8ignore=* E251 \
* E225 \
* E226 \
* W291 \
* W293 \
* E501