forked from galaxyproject/galaxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
39 lines (30 loc) · 804 Bytes
/
tox.ini
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
39
[tox]
envlist = py27-lint, py27-unit, qunit, mako-count, web-controller-line-count, py34-lint
skipsdist = True
[testenv:py27-lint]
commands = bash .ci/flake8_wrapper.sh
whitelist_externals = bash
deps = flake8
[testenv:py34-lint]
commands = bash .ci/flake8_py3_wrapper.sh
whitelist_externals = bash
deps = flake8
[testenv:py27-unit]
commands = bash run_tests.sh --no-create-venv -u
whitelist_externals = bash
deps =
nose
NoseHTML
mock
[testenv:qunit]
commands = bash run_tests.sh -q
whitelist_externals = bash
[testenv:mako-count]
commands = bash .ci/check_mako.sh
whitelist_externals = bash
[testenv:web-controller-line-count]
commands = bash .ci/check_controller.sh
whitelist_externals = bash
[testenv:first_startup]
commands = bash .ci/first_startup.sh
whitelist_externals = bash