mirror of
https://github.com/encode/django-rest-framework.git
synced 2025-02-16 19:41:06 +03:00
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.
56 lines
1.3 KiB
YAML
56 lines
1.3 KiB
YAML
language: python
|
|
cache: pip
|
|
dist: bionic
|
|
matrix:
|
|
fast_finish: true
|
|
include:
|
|
|
|
- { python: "3.5", env: DJANGO=2.2 }
|
|
|
|
- { python: "3.6", env: DJANGO=2.2 }
|
|
- { python: "3.6", env: DJANGO=3.0 }
|
|
- { python: "3.6", env: DJANGO=3.1 }
|
|
- { python: "3.6", env: DJANGO=3.2 }
|
|
|
|
- { python: "3.7", env: DJANGO=2.2 }
|
|
- { python: "3.7", env: DJANGO=3.0 }
|
|
- { python: "3.7", env: DJANGO=3.1 }
|
|
- { python: "3.7", env: DJANGO=3.2 }
|
|
|
|
- { python: "3.8", env: DJANGO=3.0 }
|
|
- { python: "3.8", env: DJANGO=3.1 }
|
|
- { python: "3.8", env: DJANGO=3.2 }
|
|
- { python: "3.8", env: DJANGO=main }
|
|
|
|
- { python: "3.9", env: DJANGO=3.1 }
|
|
- { python: "3.9", env: DJANGO=3.2 }
|
|
- { python: "3.9", env: DJANGO=main }
|
|
|
|
- { python: "3.8", env: TOXENV=base }
|
|
- { python: "3.8", env: TOXENV=docs }
|
|
|
|
- python: "3.8"
|
|
env: TOXENV=dist
|
|
script:
|
|
- python setup.py bdist_wheel
|
|
- rm -r djangorestframework.egg-info # see #6139
|
|
- tox --installpkg ./dist/djangorestframework-*.whl
|
|
- tox # test sdist
|
|
|
|
allow_failures:
|
|
- env: DJANGO=main
|
|
- env: DJANGO=3.2
|
|
|
|
install:
|
|
- pip install tox tox-travis
|
|
|
|
script:
|
|
- tox
|
|
|
|
after_success:
|
|
- pip install codecov
|
|
- codecov -e TOXENV,DJANGO
|
|
|
|
notifications:
|
|
email: false
|