17 lines
617 B
Plaintext
17 lines
617 B
Plaintext
-r base.txt
|
|
|
|
# Testing
|
|
# ------------------------------------------------------------------------------
|
|
pytest # https://github.com/pytest-dev/pytest
|
|
|
|
# Code quality
|
|
# ------------------------------------------------------------------------------
|
|
black; python_version>'3.5' # https://github.com/python/black
|
|
flake8 >=3.5.0 # https://github.com/pycqa/flake8
|
|
isort # https://github.com/timothycrosley/isort
|
|
pytest-cov # https://github.com/pytest-dev/pytest-cov
|
|
|
|
# Django
|
|
# ------------------------------------------------------------------------------
|
|
pytest-django # https://github.com/pytest-dev/pytest-django
|