forked from fedora-infra/anitya
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
53 lines (46 loc) · 1.1 KB
/
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
48
49
50
51
52
53
[tox]
envlist = el7,py27,py35,py36,lint,docs
[testenv]
passenv = TRAVIS TRAVIS_*
deps =
-rrequirements/requirements.txt
-rrequirements/test_requirements.txt
whitelist_externals =
rm
commands =
rm -rf htmlcov coverage.xml
py.test --cov-config .coveragerc --cov=anitya --cov-report term \
--cov-report xml --cov-report html
[testenv:el7]
passenv = TRAVIS TRAVIS_*
basepython = python2
deps =
-rrequirements/el7-requirements.txt
-rrequirements/test_requirements.txt
whitelist_externals =
rm
commands =
rm -rf htmlcov coverage.xml
py.test --cov-config .coveragerc --cov=anitya --cov-report term \
--cov-report xml --cov-report html
[testenv:docs]
changedir = docs
deps =
-rrequirements/readthedocs.txt
-rrequirements/requirements.txt
whitelist_externals =
mkdir
rm
commands=
mkdir -p _static
rm -rf _build
sphinx-build -W -b html -d {envtmpdir}/doctrees . _build/html
[testenv:lint]
deps =
flake8 > 3.0
commands =
python -m flake8 {posargs}
[flake8]
show-source = True
max-line-length = 100
exclude = .git,.tox,dist,*egg,build,files