forked from allure-framework/allure-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
40 lines (33 loc) · 800 Bytes
/
tox.ini
File metadata and controls
40 lines (33 loc) · 800 Bytes
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
[tox]
envlist=
py{36,37}-rf-{3,latest}
static-check
[testenv]
setenv =
ALLURE_INDENT_OUTPUT=yep
TEST_TMP={envtmpdir}
deps =
{distshare}/allure-python-commons-test-?.*.zip
{distshare}/allure-python-commons-?.*.zip
rf-3: robotframework==3.*
rf-latest: robotframework
robotframework-pabot
docutils
pyhamcrest
six
commands=
python -m doctest ./src/listener/utils.py
robot --log NONE \
--report NONE \
--output NONE \
--extension robot \
--loglevel DEBUG \
--listener allure_robotframework;{envtmpdir}/allure \
--outputdir {envtmpdir} {posargs: ./test}
[testenv:static-check]
basepython = python
skip_install = True
deps = flake8
commands = flake8 ./
[flake8]
max-line-length = 120