-
Notifications
You must be signed in to change notification settings - Fork 2
/
tox.ini
46 lines (35 loc) · 1.08 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
# 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.
# `envlist` chooses the build environments to test with the main `testenv`.
# The pyXX environments are built in, but custom environments (testenv:XX)
# must be added manually to the test suite (envlist)
[tox]
envlist=
py27,py33,py34,flake8
###########################
# Relay Flasher Tests
###########################
[testenv]
deps =
pytest
coverage
-r{toxinidir}/requirements.txt
commands =
python coverage_wrapper.py
coverage report
###########################
# Run flake8 linter
###########################
[testenv:flake8]
deps =
flake8
commands =
flake8 project-directory
# TODO:
# Write script aggregating requirements.txt from diff directories.
# Directory crawler aggregating requirements.
# TODO:
# Generate html report with coverage, have travis import it
# Make coverage hook in repo, make pretty.