mirror of
https://github.com/encode/django-rest-framework.git
synced 2024-11-22 09:36:49 +03:00
aa12a5f967
Following [my comment here](https://github.com/encode/django-rest-framework/pull/7589#issuecomment-813301322) and [Django's own move to pre-commit](https://docs.djangoproject.com/en/dev/internals/contributing/writing-code/coding-style/#pre-commit-checks). * Add pre-commit config file to run flake8 and isort. * Add extra "common sense" hooks. * Run pre-commit on GitHub actions using the [official action](https://github.com/pre-commit/action/). This is a good way to get up-and-running but it would be better if we activated [pre-commit.ci](https://pre-commit.ci/), which is faster and will auto-update the hooks for us going forwards. * Remove `runtests.py` code for running linting tools. * Remove `runtests.py --fast` flag, since that would now just run `pytest -q`, which can be done with `runtests.py -q` instead. * Remove tox configuration and requirements files for linting. * Update the contributing guide to mention setting up pre-commit.
52 lines
1.4 KiB
INI
52 lines
1.4 KiB
INI
[tox]
|
|
envlist =
|
|
{py35,py36,py37}-django22,
|
|
{py36,py37,py38}-django30,
|
|
{py36,py37,py38,py39}-django31,
|
|
{py36,py37,py38,py39}-django32,
|
|
{py38,py39}-djangomain,
|
|
base,dist,docs,
|
|
|
|
[travis:env]
|
|
DJANGO =
|
|
2.2: django22
|
|
3.0: django30
|
|
3.1: django31
|
|
3.2: django32
|
|
main: djangomain
|
|
|
|
[testenv]
|
|
commands = python -W error::DeprecationWarning -W error::PendingDeprecationWarning runtests.py --coverage {posargs}
|
|
envdir = {toxworkdir}/venvs/{envname}
|
|
setenv =
|
|
PYTHONDONTWRITEBYTECODE=1
|
|
PYTHONWARNINGS=once
|
|
deps =
|
|
django22: Django>=2.2,<3.0
|
|
django30: Django>=3.0,<3.1
|
|
django31: Django>=3.1,<3.2
|
|
django32: Django>=3.2a1,<4.0
|
|
djangomain: https://github.com/django/django/archive/main.tar.gz
|
|
-rrequirements/requirements-testing.txt
|
|
-rrequirements/requirements-optionals.txt
|
|
|
|
[testenv:base]
|
|
; Ensure optional dependencies are not required
|
|
deps =
|
|
django
|
|
-rrequirements/requirements-testing.txt
|
|
|
|
[testenv:dist]
|
|
commands = ./runtests.py --no-pkgroot --staticfiles {posargs}
|
|
deps =
|
|
django
|
|
-rrequirements/requirements-testing.txt
|
|
-rrequirements/requirements-optionals.txt
|
|
|
|
[testenv:docs]
|
|
skip_install = true
|
|
commands = mkdocs build
|
|
deps =
|
|
-rrequirements/requirements-testing.txt
|
|
-rrequirements/requirements-documentation.txt
|