From 133402bab0ecb961c21a1e85bcd6181066b36394 Mon Sep 17 00:00:00 2001 From: Andrew Date: Mon, 30 Mar 2020 21:11:07 -0400 Subject: [PATCH 1/2] Add .circleci/config.yml --- .circleci/config.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000..12a4918 --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,21 @@ +version: 2.1 + +orbs: + python: circleci/python@0.2.1 + +jobs: + build-and-test: + executor: python/default + steps: + - checkout + - python/load-cache + - python/install-deps + - python/save-cache + - run: + command: ./manage.py test + name: Test + +workflows: + main: + jobs: + - build-and-test From ae05d267fc507052c1950f9344d3a7ee789d5819 Mon Sep 17 00:00:00 2001 From: Andrew Date: Mon, 30 Mar 2020 21:13:22 -0400 Subject: [PATCH 2/2] Add .circleci/config.yml --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 12a4918..c1f1294 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -12,7 +12,7 @@ jobs: - python/install-deps - python/save-cache - run: - command: ./manage.py test + command: ./test_spatialpooch.py name: Test workflows: