mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-11 12:17:37 +03:00
1d13b1915d
* Update django-test-plus from 1.0.15 to 1.0.16 * Update django-test-plus from 1.0.15 to 1.0.16
18 lines
342 B
Plaintext
18 lines
342 B
Plaintext
# Test dependencies go here.
|
|
-r base.txt
|
|
|
|
{% if cookiecutter.windows == 'y' -%}
|
|
# Python-PostgreSQL Database Adapter
|
|
# If using Win for dev, this assumes Unix in test/prod
|
|
psycopg2==2.6.2
|
|
{%- endif %}
|
|
|
|
coverage==4.2
|
|
flake8==3.0.4 # pyup: != 2.6.0
|
|
django-test-plus==1.0.16
|
|
factory_boy==2.7.0
|
|
|
|
# pytest
|
|
pytest-django==3.0.0
|
|
pytest-sugar==0.7.1
|