forked from sclorg/rpm-list-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
42 lines (38 loc) · 904 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
[tox]
minversion = 2.4.0
# envlist = py3,style
envlist = py36,py35,py34,style
[testenv]
deps =
-rrequirements.txt
-rtest-requirements.txt
commands =
pytest -s -v --cov=rpmlb --cov-report term --cov-report html {posargs} tests
[testenv:coveralls]
deps =
-rrequirements.txt
-rtest-requirements.txt
commands =
pytest -s -v --cov=rpmlb --cov coveralls --cov-report term-missing {posargs} tests
[testenv:integration]
basepython = /usr/local/python-3.6.1/bin/python3
deps =
-rrequirements.txt
-rtest-requirements.txt
whitelist_externals =
bash
commands =
bash tests/integration/run.sh
[testenv:style]
basepython = python3
skip_install = true
deps =
-rrequirements.txt
-rtest-requirements.txt
bashate
whitelist_externals =
bash
commands =
flake8 --version
flake8 --show-source --statistics rpmlb/ tests/ setup.py
bash scripts/lint_bash.sh