-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathtox.ini
More file actions
36 lines (32 loc) · 751 Bytes
/
tox.ini
File metadata and controls
36 lines (32 loc) · 751 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
# Tox (http://tox.testrun.org/) is a tool for running tests
# in multiple virtualenvs. This configuration file will run the
# test suite on all supported python versions. To use it, "pip install tox"
# and then run "tox" from this directory.
[tox]
envlist = py27, py32, py33, py34, flake8, pep257
skip_missing_interpreters=True
[testenv]
commands =
pip install .
python --version
nosetests --verbose --with-coverage --cover-package=axosoft_api
coveralls
deps =
xvfbwrapper
nose
requests
coveralls
selenium
[testenv:flake8]
commands =
pip install .
flake8 --max-complexity 10 axosoft_api
deps =
flake8
mccabe
[testenv:pep257]
commands =
pip install .
pep257 axosoft_api
deps =
pep257