-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathtox.ini
53 lines (47 loc) · 1.02 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
[tox]
envlist = aws_integration
skipsdist = True
[testenv]
basepython = python3.6
setenv =
VIRTUALENV_NO_DOWNLOAD=1
PYTHONIOENCODING=UTF-8
deps =
-rrequirements.txt
ignore_errors=false
[testenv:aws_integration]
basepython = python3.6
setenv =
VIRTUALENV_NO_DOWNLOAD=1
PYTHONIOENCODING=UTF-8
; DEBUG=1
ignore_errors=false
whitelist_externals = sh
commands =
sh tests/cp_features.sh cp aws
python tests/run_functional_tests.py aws
sh tests/cp_features.sh rm aws
[testenv:azure_integration]
basepython = python3.6
setenv =
VIRTUALENV_NO_DOWNLOAD=1
PYTHONIOENCODING=UTF-8
; DEBUG=1
ignore_errors=false
whitelist_externals = sh
commands =
sh tests/cp_features.sh cp azure
python tests/run_functional_tests.py azure
sh tests/cp_features.sh rm azure
[testenv:integration]
basepython = python3.6
setenv =
VIRTUALENV_NO_DOWNLOAD=1
PYTHONIOENCODING=UTF-8
; DEBUG=1
ignore_errors=false
whitelist_externals = sh
commands =
sh tests/cp_features.sh cp all
python tests/run_functional_tests.py all
sh tests/cp_features.sh rm all