forked from pycontribs/jenkinsapi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
30 lines (29 loc) · 617 Bytes
/
tox.ini
File metadata and controls
30 lines (29 loc) · 617 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
#
# jenkinsapi tox.ini
#
# This file helps for developers to simulate locally
# what travis will execute when testing merges. See
# http://tox.readthedocs.org for configuration info
#
# Usage:
# $ pip install tox
# $ tox -e py27 # lint/test for python2.7 OR,
# $ tox -e py34 # lint/tests for python3.4 OR,
# $ tox # lint/tests for both
#
[tox]
envlist = py26,py27,py34
[testenv]
deps=
nose
mock
coverage
pep8
astroid<1.3.0
pylint<1.4
usedevelop=
True
commands=
pylint --rcfile=pylintrc jenkinsapi --disable R0912
pep8 --ignore=E501 jenkinsapi
python setup.py test