You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

23 lines
479 B

[tox]
skip_missing_interpreters = True
; Python versions ends of life:
; - 3.6: December 2021
; - 3.7: June 2023
; - 3.8: October 2024
envlist = py36, py37, py38, inst, setup, unit
# test that it can be installed with custom commands and clean env
[testenv:inst]
skip_install = True
commands =
- pip install .
recreate = True
[testenv:setup]
skip_install = True
commands = python setup.py install
recreate = True
[testenv:unit]
deps = .[test]
commands = pytest -svv tests