Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
77 lines (69 sloc)
1.66 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Tox (https://tox.readthedocs.io/) is a tool for running tests in multiple | |
# virtualenvs. This configuration file helps to run the test suite on all | |
# supported Python versions. To use it, "python -m pip install tox" and | |
# then run "tox" from this directory. | |
[tox] | |
minversion = 3.18 | |
skipsdist = true | |
envlist = | |
py3 | |
black | |
flake8 | |
docs | |
isort | |
# Add environment to use the default python3 installation | |
[testenv:py3] | |
basepython = python3 | |
[testenv] | |
usedevelop = true | |
# OBJC_DISABLE_INITIALIZE_FORK_SAFETY fixes hung tests for MacOS users. (#30806) | |
passenv = DJANGO_SETTINGS_MODULE PYTHONPATH HOME DISPLAY OBJC_DISABLE_INITIALIZE_FORK_SAFETY | |
setenv = | |
PYTHONDONTWRITEBYTECODE=1 | |
deps = | |
py{3,38,39,310}: -rtests/requirements/py3.txt | |
postgres: -rtests/requirements/postgres.txt | |
mysql: -rtests/requirements/mysql.txt | |
oracle: -rtests/requirements/oracle.txt | |
changedir = tests | |
commands = | |
{envpython} runtests.py {posargs} | |
[testenv:black] | |
basepython = python3 | |
usedevelop = false | |
deps = black | |
changedir = {toxinidir} | |
commands = black --check --diff . | |
[testenv:flake8] | |
basepython = python3 | |
usedevelop = false | |
deps = flake8 >= 3.7.0 | |
changedir = {toxinidir} | |
commands = flake8 . | |
[testenv:docs] | |
basepython = python3 | |
usedevelop = false | |
allowlist_externals = | |
make | |
deps = | |
Sphinx | |
pyenchant | |
sphinxcontrib-spelling | |
changedir = docs | |
commands = | |
make spelling | |
[testenv:isort] | |
basepython = python3 | |
usedevelop = false | |
deps = isort >= 5.1.0 | |
changedir = {toxinidir} | |
commands = isort --check-only --diff django tests scripts | |
[testenv:javascript] | |
usedevelop = false | |
deps = | |
changedir = {toxinidir} | |
allowlist_externals = | |
npm | |
commands = | |
npm install | |
npm test |