From 7bd8a79ba5cde2939ea0d220a6383b0ba45ed7de Mon Sep 17 00:00:00 2001 From: "Nikita P. Shupeyko" Date: Wed, 7 Mar 2018 16:49:33 +0300 Subject: [PATCH] Get rid of test.txt Rationale: it effectively a duplicate of what's in local.txt --- .../requirements/test.txt | 18 ------------------ .../utility/install_python_dependencies.sh | 1 - 2 files changed, 19 deletions(-) delete mode 100644 {{cookiecutter.project_slug}}/requirements/test.txt diff --git a/{{cookiecutter.project_slug}}/requirements/test.txt b/{{cookiecutter.project_slug}}/requirements/test.txt deleted file mode 100644 index 2a6ed87fa..000000000 --- a/{{cookiecutter.project_slug}}/requirements/test.txt +++ /dev/null @@ -1,18 +0,0 @@ -# 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.7.4 -{%- endif %} - -coverage==4.5.1 -flake8==3.5.0 # pyup: != 2.6.0 -django-test-plus==1.0.22 -factory-boy==2.10.0 -django-coverage-plugin==1.5.0 - -# pytest -pytest-django==3.1.2 -pytest-sugar==0.9.1 diff --git a/{{cookiecutter.project_slug}}/utility/install_python_dependencies.sh b/{{cookiecutter.project_slug}}/utility/install_python_dependencies.sh index c28b5b891..517934841 100755 --- a/{{cookiecutter.project_slug}}/utility/install_python_dependencies.sh +++ b/{{cookiecutter.project_slug}}/utility/install_python_dependencies.sh @@ -35,7 +35,6 @@ if [ -z "$VIRTUAL_ENV" ]; then else pip install -r $PROJECT_DIR/requirements/local.txt - pip install -r $PROJECT_DIR/requirements/test.txt {% if cookiecutter.use_heroku == "y" -%} pip install -r $PROJECT_DIR/requirements.txt {%- endif %}