summaryrefslogtreecommitdiff
path: root/tox.ini
blob: 97c4794b02f29fae238dc3f440299ae07c5bf75e (plain)
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
[tox]
envlist = py37,py36,py35,py34,py32,py27,pypy,pypy3,flake8

[testenv]
commands = python --version
           ./mimeparse_test.py

[testenv:py37]
basepython = python3.7

[testenv:py36]
basepython = python3.6

[testenv:py35]
basepython = python3.5

[testenv:py34]
basepython = python3.4

[testenv:py32]
basepython = python3.2

[testenv:py27]
basepython = python2.7

[testenv:pypy]
basepython = pypy

[testenv:pypy3]
basepython = pypy3

[testenv:flake8]
deps = flake8
       flake8-import-order
commands = flake8 --statistics --show-source --ignore=E501 --exclude=.venv,.tox,*egg,*.egg-info,build,dist .