blob: 8f272bf698f86b739717b04060b59f0c5759c471 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
[tox]
envlist = py27, py33, py34, py35, py36, pypy, flake8
skip_missing_interpreters = true
[tox:travis]
2.7 = py27
3.3 = py33
3.4 = py34
3.5 = py35
3.6 = py36, flake8
pypy = pypy
[testenv]
commands = python -m pytest {posargs}
extras = testing
[testenv:flake8]
deps = flake8
commands = flake8 cbor2 tests
skip_install = true
|