-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtox.ini
41 lines (36 loc) · 1.04 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
# tox (https://tox.readthedocs.io/) 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]
skipsdist=True
envlist = py3
[testenv:shallow_test]
platform = linux|darwin
deps = -rrequirements.txt
passenv =
__E4S_CL_USER_PREFIX__
__E4S_CL_SYSTEM_PREFIX__
setenv =
__E4S_CL_SCRIPT__ = e4s-cl
PYTHONPATH = {toxinidir}/packages
PATH = {toxinidir}/scripts{:}{env:PATH}
commands =
python -m unittest discover -s packages/e4s_cl
[testenv:deep_test]
platform = linux|darwin
deps = -rrequirements.txt
passenv =
__E4S_CL_USER_PREFIX__
__E4S_CL_SYSTEM_PREFIX__
__E4S_CL_TEST_BINARY
__E4S_CL_TEST_LAUNCHER
__E4S_CL_TEST_PROFILE
__E4S_CL_TEST_INIT
setenv =
__E4S_CL_SCRIPT__ = e4s-cl
__E4S_CL_HOME__ = {toxinidir}/e4s-cl-1.0rc4
PYTHONPATH = {toxinidir}/e4s-cl-1.0rc4/packages
PATH = {toxinidir}/e4s-cl-1.0rc4/bin{:}{env:PATH}
commands =
python -m unittest discover -s packages/e4s_cl