summaryrefslogtreecommitdiff
path: root/tox.ini
blob: 56b255a0644a30fd6afeb7deddec2643bed23d8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[tox]
envlist = py37,py38,py39,py310,py311,pypy3,flake8
skip_missing_interpreters = True

[testenv]
commands =
    python setup.py test
sitepackages = True

[testenv:flake8]
deps =
    flake8
commands =
    python -m flake8 pym

[flake8]
# We initially start small, but we probably want to expand that list with time.
select = F4,F6,F7,F8,F9