forked from galaxyproject/galaxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
88 lines (73 loc) · 2.41 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
[tox]
# envlist is the list of environments that are tested when `tox` is run without any option
# hyphens in an environment name are used to delimit factors
envlist = check_py3_compatibility, py27-first_startup, py27-lint, py27-lint_docstring_include_list, py27-unit, py34-lint, py34-first_startup, qunit, validate_test_tools
skipsdist = True
[testenv:check_py3_compatibility]
commands = bash .ci/check_py3_compatibility.sh
whitelist_externals = bash
[testenv:check_python_dependencies]
commands = make list-dependency-updates # someday change exit code on this.
whitelist_externals = make
[testenv:mako_count]
commands = bash .ci/check_mako.sh
whitelist_externals = bash
[testenv:py27-first_startup]
commands = bash .ci/first_startup.sh
whitelist_externals = bash
[testenv:py27-lint]
commands = bash .ci/flake8_wrapper.sh
whitelist_externals = bash
deps = -rlib/galaxy/dependencies/pipfiles/flake8/pinned-requirements.txt
[testenv:py27-lint_docstring]
commands = bash .ci/flake8_wrapper_docstrings.sh --exclude
whitelist_externals = bash
deps = -rlib/galaxy/dependencies/pipfiles/flake8/pinned-requirements.txt
[testenv:py27-lint_docstring_include_list]
commands = bash .ci/flake8_wrapper_docstrings.sh --include
whitelist_externals = bash
deps = -rlib/galaxy/dependencies/pipfiles/flake8/pinned-requirements.txt
[testenv:py27-unit]
commands = bash run_tests.sh -u
whitelist_externals = bash
setenv =
GALAXY_VIRTUAL_ENV={envdir}
GALAXY_ENABLE_BETA_COMPRESSED_GENBANK_SNIFFING=1
deps =
nose
NoseHTML
mock
mock-ssh-server
[testenv:py34-first_startup]
commands =
bash .ci/first_startup.sh
setenv =
GALAXY_VIRTUAL_ENV=.venv3
whitelist_externals = bash
[testenv:py34-lint]
commands = bash .ci/flake8_wrapper.sh
whitelist_externals = bash
deps = -rlib/galaxy/dependencies/pipfiles/flake8/pinned-requirements.txt
[testenv:py34-unit]
commands = bash run_tests.sh -u
whitelist_externals = bash
setenv =
GALAXY_VIRTUAL_ENV={envdir}
deps =
nose
NoseHTML
mock
mock-ssh-server
[testenv:py35-lint]
commands = bash .ci/flake8_wrapper.sh
whitelist_externals = bash
deps = -rlib/galaxy/dependencies/pipfiles/flake8/pinned-requirements.txt
[testenv:qunit]
commands = make client-test
whitelist_externals = make
[testenv:validate_test_tools]
commands = bash .ci/validate_test_tools.sh
whitelist_externals = bash
[testenv:web_controller_line_count]
commands = bash .ci/check_controller.sh
whitelist_externals = bash