Red-DiscordBot/tox.ini
Michael H dd899c804a
Remove the mongo driver (#3099)
* kills mongo

* changelog

* more refeences to mongo needed to go
2019-11-08 14:48:04 -05:00

71 lines
1.9 KiB
INI

# 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.
[tox]
envlist =
py37
docs
style
skip_missing_interpreters = True
[testenv]
description = Run tests and basic automatic issue checking.
whitelist_externals =
pytest
pylint
extras = voice, test
commands =
python -m compileall ./redbot/cogs
pytest
pylint ./redbot
[testenv:postgres]
description = Run pytest with PostgreSQL backend
whitelist_externals =
pytest
extras = voice, test, postgres
setenv =
RED_STORAGE_TYPE=postgres
passenv =
# Use the following env vars for connection options, or other default options described here:
# https://magicstack.github.io/asyncpg/current/index.html#asyncpg.connection.connect
PGHOST
PGPORT
PGUSER
PGPASSWORD
PGDATABASE
commands =
pytest
[testenv:docs]
description = Attempt to build docs with sphinx-build
whitelist_externals =
sphinx-build
make
setenv =
# This is just for Windows
# Prioritise make.bat over any make.exe which might be on PATH
PATHEXT=.BAT;.EXE
basepython = python3.7
extras = docs
commands =
sphinx-build -d "{toxworkdir}/docs_doctree" docs "{toxworkdir}/docs_out/html" -W -bhtml
sphinx-build -d "{toxworkdir}/docs_doctree" docs "{toxworkdir}/docs_out/linkcheck" -W -blinkcheck
sphinx-build -d "{toxworkdir}/docs_doctree" docs "{toxworkdir}/docs_out/doctest" -W -bdoctest
make checkchangelog
[testenv:style]
description = Stylecheck the code with black to see if anything needs changes.
whitelist_externals =
make
setenv =
# This is just for Windows
# Prioritise make.bat over any make.exe which might be on PATH
PATHEXT=.BAT;.EXE
basepython = python3.7
extras = style
commands =
make stylecheck