mirror of
https://github.com/bndr/pipreqs.git
synced 2025-06-06 03:25:21 +00:00

Maybe forcing pypy to use python 3 will solve the issue (although it works fine with python 2.7 at the moment)
17 lines
317 B
INI
17 lines
317 B
INI
[tox]
|
|
envlist = py27, py34, py35, py36, pypy3, flake8
|
|
|
|
[testenv]
|
|
setenv =
|
|
PYTHONPATH = {toxinidir}:{toxinidir}/pipreqs
|
|
commands = python setup.py test
|
|
deps =
|
|
-r{toxinidir}/requirements.txt
|
|
|
|
[testenv:flake8]
|
|
basepython = python3.6
|
|
commands = flake8 pipreqs
|
|
deps =
|
|
-r{toxinidir}/requirements.txt
|
|
flake8
|