From fee9633a97992b9f4503424841181633cbbd757d Mon Sep 17 00:00:00 2001 From: Arnav Choudhury Date: Thu, 17 Sep 2020 13:46:51 +0530 Subject: [PATCH] Removing github yml file at project root. And also modified commands to use the new project structre to create a template --- tests/test_bare.sh | 2 +- tests/test_docker.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_bare.sh b/tests/test_bare.sh index cc1f1c36e..11f224021 100755 --- a/tests/test_bare.sh +++ b/tests/test_bare.sh @@ -17,7 +17,7 @@ mkdir -p .cache/bare cd .cache/bare # create the project using the default settings in cookiecutter.json -cookiecutter ../../ --no-input --overwrite-if-exists use_docker=n $@ +cookiecutter https://github.com/arnav13081994/cookiecutter-django.git --no-input --overwrite-if-exists use_docker=n $@ cd my_awesome_project # Install OS deps diff --git a/tests/test_docker.sh b/tests/test_docker.sh index 55771c14c..23f5620c7 100755 --- a/tests/test_docker.sh +++ b/tests/test_docker.sh @@ -13,7 +13,7 @@ mkdir -p .cache/docker cd .cache/docker # create the project using the default settings in cookiecutter.json -cookiecutter ../../ --no-input --overwrite-if-exists use_docker=y $@ +cookiecutter https://github.com/arnav13081994/cookiecutter-django.git --no-input --overwrite-if-exists use_docker=y $@ cd my_awesome_project # run the project's type checks