Skip to content

Commit c122718

Browse files
authored
Merge pull request #122 from planetlabs/addtox
add tox config for (optional) testing locally against multiple Python versions
2 parents 7dc38b1 + dfa0968 commit c122718

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

tox.ini

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Tox (https://tox.readthedocs.io/) is a tool for running tests
2+
# in multiple virtualenvs. This configuration file will run the
3+
# test suite on all supported python versions. To use it, "pip install tox"
4+
# and then run "tox" from this directory.
5+
6+
[tox]
7+
envlist = py27, py34, py35, py36
8+
9+
[testenv]
10+
deps = pytest
11+
commands =
12+
pip install -e .[dev]
13+
pytest

0 commit comments

Comments
 (0)