tqdm/tox.ini

77 lines
1.6 KiB
INI
Raw Normal View History

# Tox (https://tox.testrun.org/) 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.
[tox]
2024-02-05 23:15:53 +00:00
envlist=py{37,38,39,310,311,312,py3}{,-tf}{,-keras}, perf, check
isolated_build=True
2021-09-18 12:18:49 +00:00
[gh-actions]
2021-09-18 13:34:44 +00:00
python=
3.7: py37
3.8: py38
3.9: py39
2021-09-18 13:19:09 +00:00
3.10: py310
2023-03-03 14:36:36 +00:00
3.11: py311
2024-02-05 23:15:53 +00:00
3.12: py312
2021-09-18 12:18:49 +00:00
pypy-3.7: pypy3
2021-09-18 13:34:44 +00:00
[gh-actions:env]
PLATFORM=
ubuntu: tf-keras
2021-09-18 12:18:49 +00:00
2021-02-22 22:27:58 +00:00
[core]
deps=
2020-10-19 12:14:53 +00:00
pytest
pytest-cov
2021-01-03 22:02:40 +00:00
pytest-timeout
2023-03-03 15:58:53 +00:00
pytest-asyncio
ipywidgets
git+https://github.com/casperdcl/nbval.git@master#egg=nbval
coverage
2015-06-18 22:02:13 +00:00
coveralls
codecov
commands=
2021-02-22 22:27:58 +00:00
- coveralls
codecov -X pycov -e TOXENV
- codacy report -l Python -r coverage.xml --partial
[testenv]
2023-03-03 14:36:36 +00:00
passenv=TOXENV,CI,GITHUB_*,CODECOV_*,COVERALLS_*,CODACY_*,HOME
deps=
2021-02-22 22:27:58 +00:00
{[core]deps}
cython
2021-03-05 13:17:39 +00:00
dask[delayed]
2021-01-10 23:39:25 +00:00
matplotlib
numpy
pandas
2023-03-03 15:58:53 +00:00
rich
2023-08-09 17:37:21 +00:00
tf: tensorflow!=2.5.0
2023-03-03 15:58:53 +00:00
keras: keras
2021-02-22 22:27:58 +00:00
commands=
2024-10-28 02:57:48 +00:00
pytest --cov=tqdm --cov-report= -W=ignore tests_notebook.ipynb --nbval --nbval-current-env --nbval-sanitize-with=.meta/nbval.ini
2023-03-03 15:58:53 +00:00
pytest --cov=tqdm --cov-report=xml --cov-report=term --cov-append -k "not perf"
2021-02-22 22:27:58 +00:00
{[core]commands}
allowlist_externals=codacy
2020-12-25 01:40:26 +00:00
# no cython/numpy/pandas
2023-03-03 15:58:53 +00:00
[testenv:pypy3]
2021-02-22 22:27:58 +00:00
deps={[core]deps}
[testenv:perf]
deps=
2021-01-03 22:02:40 +00:00
pytest
pytest-timeout
2022-02-17 19:49:00 +00:00
pytest-asyncio
commands=pytest -k perf
2017-05-29 15:40:15 +00:00
[testenv:check]
deps=
build
twine
2019-02-10 18:38:28 +00:00
py-make>=0.1.0
commands=
{envpython} -m build
{envpython} -m twine check dist/*
{envpython} -m pymake -h