forked from MarketSquare/robotframework-aws
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
48 lines (42 loc) · 752 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
36
37
38
39
40
41
42
43
44
45
46
47
[tox]
skipsdist = False
[testenv:unit]
basepython = python3
deps =
pytest
pytest-cov
coverage
coveralls
boto3
requests
botocore
passenv =
ACCESS_KEY
SECRET_KEY
PROFILE
COVERALLS_REPO_TOKEN
usedevelop = True
commands =
coverage erase
coverage run --source=src/AWSLibrary -m pytest tests
coverage report -m
coveralls
[testenv:robot]
deps =
robotframework
botocore
boto3
requests
changedir = {toxinidir}/tests/robot
commands = python -m robot -A run_arguments.robot
passenv =
ACCESS_KEY
SECRET_KEY
PROFILE
[testenv:flake8]
basepython = python3.7
description = lint with flake8
deps =
flake8
ignore= F841,E902,F401
commands = flake8 {posargs} flake8/