-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtox.ini
35 lines (32 loc) · 1022 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
26
27
28
29
30
31
32
33
34
35
[tox]
envlist =
django111
[testenv]
basepython = python3.6
setenv =
ALLOWED_API_KEYS=test-api-key,some-other-api-key
USER_DATA_STORE_API=local.uds
USER_DATA_STORE_API_KEY=uds-test-api-key
ACCESS_CONTROL_API=local.acs
ACCESS_CONTROL_API_KEY=acs-test-api-key
KINESIS_SESSION=aws_access_key_id=foobar,aws_secret_access_key=foobar,region_name=us-east-1
KINESIS_PRODUCER=stream_name=test-stream
KINESIS_BOTO3_CLIENT_SETTINGS=endpoint_url=http://localstack:4568
[testenv:django111]
deps =
coverage
-rauthentication_service/tests/requirements/111.txt
commands =
coverage run --source=authentication_service,project manage.py test authentication_service{posargs} --settings=authentication_service.tests.settings.111
coverage report -m
[flake8]
format = pylint
max-line-length = 120
exclude =
ve/,
.tox/
# The directories below contains generated code
docs/,
swagger_server/,
authentication_service/migrations/