forked from CybOXProject/python-cybox
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
30 lines (25 loc) · 616 Bytes
/
tox.ini
File metadata and controls
30 lines (25 loc) · 616 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
[tox]
envlist = py26, py27, py32, py33, py34, rhel6, docs
[testenv]
commands =
nosetests cybox
sphinx-build -W -b doctest -d {envtmpdir}/doctrees docs {envtmpdir}/doctest
deps = -rrequirements.txt
# Sphinx requires at least Python 2.6 or 3.3
[testenv:py32]
commands =
nosetests cybox
deps = -rrequirements.txt
[testenv:rhel6]
basepython=python2.6
commands =
nosetests cybox --exclude=ciq_test.py
deps =
lxml==2.2.3
mixbox==0.0.11
python-dateutil==1.4.1
nose
[testenv:docs]
basepython=python2.7
commands =
sphinx-build -W -b html -d {envtmpdir}/doctrees docs {envtmpdir}/html