-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathtox.ini
More file actions
38 lines (36 loc) · 786 Bytes
/
tox.ini
File metadata and controls
38 lines (36 loc) · 786 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
35
36
37
38
# QUICK TIPS
# ==========
#
# Run all tests for all environments from the command line:
# $ tox
#
#
# Run all tests for a single environment from the command line:
# $ tox -e pep8
# or:
# $ tox -e py34
#
#
# Run only tests that match a substring expression, for a single environment:
# $ tox -e py34 -- -k expression
#
#
# In general, everything after the "--" is passed as arguments to py.test:
# $ tox -- -s -v -k expression
#
[tox]
envlist=pep8,py27,py33,py34,py35
skipsdist=True
[testenv]
setenv=
SIDEBOARD_CONFIG_OVERRIDES=test-defaults.ini
deps=
-rrequirements.txt
-rtest_requirements.txt
commands=
coverage run --source sideboard -m py.test {posargs} sideboard
coverage report --show-missing
[testenv:pep8]
deps=pep8
commands=
pep8 sideboard/