]> git.phdru.name Git - ppu.git/blob - tox.ini
Tests(tox): Remove `basepython`
[ppu.git] / tox.ini
1 [tox]
2 minversion = 3.15
3 envlist = py27,py3{4,5,6,7,8,9,10},pypy,py{27,39}-flake8
4
5 # Base test environment settings
6 [testenv]
7 commands =
8     {envpython} --version
9     {envpython} -c "import struct; print(struct.calcsize('P') * 8)"
10     {envpython} -m pytest --version
11 deps =
12     -rdevscripts/requirements/requirements_tests.txt
13
14 [testenv:{py27,py34,py35,py36,py37,py38,py39,py310,pypy}]
15 commands =
16     {[testenv]commands}
17     {envpython} -m pytest
18
19 [testenv:{py27,py34,py35,py36,py37,py38,py39,py310}-flake8]
20 deps =
21     flake8
22     pytest < 7.0
23 commands =
24     {[testenv]commands}
25     flake8