mirror of https://github.com/tqdm/tqdm.git
68 lines
1.7 KiB
INI
68 lines
1.7 KiB
INI
# 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]
|
|
# deprecation warning: py{27,py2,34,35,36}
|
|
envlist=py{27,34,35,36,37,38,39,py2,py3}{,-tf}{,-keras}, perf, setup.py
|
|
isolated_build=True
|
|
|
|
[core]
|
|
deps=
|
|
pytest
|
|
pytest-cov
|
|
pytest-timeout
|
|
py3{7,8,9}: pytest-asyncio
|
|
py3{6,7,8,9}: ipywidgets
|
|
py3{6,7,8,9}: git+https://github.com/casperdcl/nbval.git@named_cells#egg=nbval
|
|
coverage
|
|
coveralls
|
|
codecov
|
|
commands=
|
|
- coveralls
|
|
codecov -X pycov -e TOXENV
|
|
- codacy report -l Python -r coverage.xml --partial
|
|
|
|
[testenv]
|
|
passenv=TOXENV CI GITHUB_* CODECOV_* COVERALLS_* CODACY_* HOME
|
|
deps=
|
|
{[core]deps}
|
|
cython
|
|
dask[delayed]
|
|
matplotlib
|
|
numpy
|
|
pandas
|
|
keras: keras
|
|
py3{6,7,8,9}: rich
|
|
tf: tensorflow
|
|
commands=
|
|
py3{6,7,8,9}: pytest --cov=tqdm --cov-report= tests_notebook.ipynb --nbval --current-env -W=ignore --sanitize-with=setup.cfg
|
|
pytest --cov=tqdm --cov-report=xml --cov-report=term --cov-append -k "not perf"
|
|
{[core]commands}
|
|
allowlist_externals=codacy
|
|
|
|
[testenv:py{27,py2}{,-tf}{,-keras}]
|
|
commands=
|
|
pytest --cov=tqdm --cov-report=xml --cov-report=term -k "not perf" -o addopts= -v --tb=short -rxs -W=error --durations=10
|
|
{[core]commands}
|
|
|
|
# no cython/numpy/pandas
|
|
[testenv:py{34,py2,py3}]
|
|
deps={[core]deps}
|
|
|
|
[testenv:perf]
|
|
deps=
|
|
pytest
|
|
pytest-timeout
|
|
commands=pytest -k perf
|
|
|
|
[testenv:setup.py]
|
|
deps=
|
|
docutils
|
|
pygments
|
|
py-make>=0.1.0
|
|
commands=
|
|
{envpython} setup.py check --restructuredtext --metadata --strict
|
|
{envpython} setup.py make none
|