12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- [tox]
- skipsdist = true
- envlist =
- py3
- flake8
- docs
- isort >= 5.1.0
- [testenv:py3]
- basepython = python3
- [testenv]
- usedevelop = true
- passenv = DJANGO_SETTINGS_MODULE PYTHONPATH HOME DISPLAY OBJC_DISABLE_INITIALIZE_FORK_SAFETY
- setenv =
- PYTHONDONTWRITEBYTECODE=1
- deps =
- py{3,36,37,38}: -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:flake8]
- basepython = python3
- usedevelop = false
- deps = flake8
- changedir = {toxinidir}
- commands = flake8 .
- [testenv:docs]
- basepython = python3
- usedevelop = false
- whitelist_externals =
- make
- deps =
- Sphinx
- pyenchant
- sphinxcontrib-spelling
- changedir = docs
- commands =
- make spelling
- [testenv:isort]
- basepython = python3
- usedevelop = false
- deps = isort
- changedir = {toxinidir}
- commands = isort --check-only --diff django tests scripts
- [testenv:javascript]
- usedevelop = false
- deps =
- changedir = {toxinidir}
- whitelist_externals = npm
- commands =
- npm install
- npm test
|