File tree 2 files changed +13
-13
lines changed
2 files changed +13
-13
lines changed Original file line number Diff line number Diff line change 1
1
sudo : required
2
2
services :
3
3
- docker
4
-
4
+ addons :
5
+ apt :
6
+ sources :
7
+ - deadsnakes
8
+ packages :
9
+ - python3.5
5
10
language : python
6
11
python : 2.7
7
12
env :
13
+ - TOX_ENV=py35
8
14
- TOX_ENV=py34
9
15
- TOX_ENV=py27
10
16
- TOX_ENV=pep8
11
17
- TOX_ENV=docs
12
- - TOX_ENV=noop_py
13
- - TOX_ENV=noop_cli
18
+ - TOX_ENV=py_func
19
+ - TOX_ENV=cli_func
14
20
install :
15
21
- pip install tox
16
22
script :
17
23
- tox -e $TOX_ENV
18
- after_success :
19
- if [ "$TOX_ENV" = "noop_py" ]; then ./tools/py_functional_tests.sh; elif [ "$TOX_ENV" = "noop_cli" ]; then ./tools/functional_tests.sh; fi
Original file line number Diff line number Diff line change @@ -32,12 +32,8 @@ commands = python setup.py build_sphinx
32
32
commands =
33
33
python setup.py testr --slowest --coverage --testr-args =" {posargs}"
34
34
35
- [testenv:noop_cli]
36
- usedevelop = True
37
- install_command = true {opts} {packages}
38
- commands = true
35
+ [testenv:cli_func]
36
+ commands = {toxinidir}/tools/functional_tests.sh
39
37
40
- [testenv:noop_py]
41
- usedevelop = True
42
- install_command = true {opts} {packages}
43
- commands = true
38
+ [testenv:py_func]
39
+ commands = {toxinidir}/tools/py_functional_tests.sh
You can’t perform that action at this time.
0 commit comments