forked from aws/aws-sdk-pandas
-
Notifications
You must be signed in to change notification settings - Fork 2
/
tox.ini
25 lines (23 loc) · 860 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]
envlist = py{36,37,38,39}
[testenv]
passenv = AWS_PROFILE AWS_DEFAULT_REGION AWS_ACCESS_KEY_ID AWS_SECRET_ACCESS_KEY AWS_SESSION_TOKEN
deps =
.[sqlserver]
pytest==6.2.2
pytest-rerunfailures==9.1.1
pytest-xdist==2.2.1
pytest-timeout==1.4.2
moto==2.0.0
s3fs==0.4.2
commands =
pytest -n {posargs} -s -v --timeout=300 --reruns=2 --reruns-delay=60 \
--junitxml=test-reports/junit.xml --log-file=test-reports/logs.txt tests
[testenv:py39]
passenv = AWS_PROFILE AWS_DEFAULT_REGION AWS_ACCESS_KEY_ID AWS_SECRET_ACCESS_KEY AWS_SESSION_TOKEN
deps =
{[testenv]deps}
pytest-cov==2.11.1
commands =
pytest -n {posargs} -s -v --timeout=300 --reruns=2 --reruns-delay=60 --cov=awswrangler \
--junitxml=test-reports/junit.xml --log-file=test-reports/logs.txt tests