forked from alexcoman/labs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
25 lines (19 loc) · 759 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
[tox]
minversion = 1.6
skipsdist = True
envlist = python, bash, html, css, php
[testenv]
passenv = TRAVIS_BUILD_DIR
setenv = VIRTUAL_ENV={envdir}
deps = -r{toxinidir}/requirements.txt
install_command = pip install -U --force-reinstall {opts} {packages}
[testenv:python]
commands = python ./.travis/build.py --file_type "py"
[testenv:bash]
commands = python ./.travis/build.py --file_type "sh"
[testenv:html]
commands = python ./.travis/build.py --file_type "html"
[testenv:css]
commands = python ./.travis/build.py --file_type "css"
[testenv:php]
commands = python ./.travis/build.py --file_type "php"