2020-08-03 10:24:41 +00:00
|
|
|
# tox (https://tox.readthedocs.io/) is a tool for running tests
|
|
|
|
# in multiple virtualenvs. This configuration file will run the
|
|
|
|
# test suite on all supported python versions. To use it, "pip install tox"
|
|
|
|
# and then run "tox" from this directory.
|
|
|
|
|
2017-05-22 16:29:53 +00:00
|
|
|
[tox]
|
2022-01-16 21:18:22 +00:00
|
|
|
envlist = py37, py38, py39, py310
|
2020-08-03 10:24:41 +00:00
|
|
|
skip_missing_interpreters = true
|
2017-05-22 16:29:53 +00:00
|
|
|
|
|
|
|
[testenv]
|
|
|
|
deps =
|
2020-08-03 10:24:41 +00:00
|
|
|
pdfrw
|
|
|
|
pytest
|
|
|
|
pikepdf
|
|
|
|
numpy
|
|
|
|
scipy
|
2017-05-22 16:29:53 +00:00
|
|
|
commands =
|
2021-04-07 06:20:24 +00:00
|
|
|
python -m pytest -vv
|