-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathtox.ini
More file actions
25 lines (21 loc) · 648 Bytes
/
tox.ini
File metadata and controls
25 lines (21 loc) · 648 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
[tox]
envlist = clean,py27,py3,py36,pypy,pypy3
skip_missing_interpreters = True
[testenv]
deps = -Ur{toxinidir}/requirements.txt
-Ur{toxinidir}/requirements.testing.txt
commands = pytest -s -v
whitelist_externals = pyenv install -s 2.7.11
pyenv install -s 3.6.1
pyenv install -s pypy-5.3.1
pyenv local 2.7.11 3.6.1 pypy-5.3.1
[testenv:clean]
deps = coverage
commands = coverage erase
[testenv:report]
commands = py.test --cov-report html --cov=socket_io_emitter
[testenv:coverage]
commands = coverage combine
coverage html
coverage report
codecov