078bea4345
This is really a test module, but the Rust convention is to put something like this under examples/, and when it lands, we can take advantage of "Project-based Examples for Cargo Projects" - RFC link at https://github.com/rust-lang/rfcs/pull/2517
15 lines
279 B
INI
15 lines
279 B
INI
[tox]
|
|
envlist = py27,
|
|
py35,
|
|
py36,
|
|
py37,
|
|
minversion = 2.9.0
|
|
skip_missing_interpreters = true
|
|
|
|
[testenv]
|
|
description = Run the unit tests under {basepython}
|
|
deps = -rrequirements-dev.txt
|
|
usedevelop = True
|
|
commands = pip install -e .
|
|
pytest
|