forked from RedHatQE/pylero
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
37 lines (32 loc) · 718 Bytes
/
tox.ini
File metadata and controls
37 lines (32 loc) · 718 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
# 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]
testenv=py{279,36,275}
[base]
deps =
cov-core
nose2[coverage-plugin]
unittest2
requests
commands =
python tier_tests.py {posargs}
[testenv:py275]
basepython = python2.7
deps =
suds
{[base]deps}
commands = {[base]commands}
[testenv:py279]
basepython = python2.7
deps =
suds
{[base]deps}
commands = {[base]commands}
[testenv:py36]
basepython = python3.6
deps =
suds3
{[base]deps}
commands = {[base]commands}