forked from secure-systems-lab/sample-documents
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
25 lines (18 loc) · 764 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
[Note: The Tox configuration below does not apply to all SSL projects. For
instance, not all projects will trigger the test suite via a module named
aggregate_tests.py. Please modify the text accordingly before incorporating it
into your project.]
# Tox (http://tox.testrun.org/) is a tool for running tests
# in multiple virtualenvs. This configuration file will run the
# test suite on all supported python versions. To use it, "pip install tox"
# and then run "tox" from this directory.
[tox]
envlist = py27, py34, py35, py36
[testenv]
changedir = tests
commands =
coverage run --source tuf aggregate_tests.py
coverage report -m --fail-under 97
deps =
-r{toxinidir}/ci-requirements.txt
install_command = pip install --pre {opts} {packages}