blob: f9d811cd2818038b63745020bc02999d2b0478e8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# tox isn't actually used for anything right now, but might be a better tool
# for CI or for testing compatibility with multiple python versions
[tox]
envlist = py35
[testenv]
deps = pipenv
commands =
pipenv install --dev
pipenv run pytest
|