forked from cloudify-cosmo/cloudify-script-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
32 lines (28 loc) · 605 Bytes
/
tox.ini
File metadata and controls
32 lines (28 loc) · 605 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
# content of: tox.ini , put in same dir as setup.py
[tox]
envlist=flake8,docs,py27,py26
whitelist_externals =
make
[testenv]
deps =
# this fixes issue with tox installing coverage --pre
coverage==3.7.1
nose
nose-cov
testfixtures
-rdev-requirements.txt
-rtest-requirements.txt
commands=nosetests --with-cov --cov script_runner script_runner/tests
[testenv:docs]
changedir=docs
deps =
sphinx
sphinx-rtd-theme
-rdev-requirements.txt
commands=make html
[testenv:flake8]
deps =
flake8
-rdev-requirements.txt
commands=flake8 script_runner
[testenv:pywin]