We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e61d9b commit 8ddbfe2Copy full SHA for 8ddbfe2
.circleci/config.yml
@@ -0,0 +1,21 @@
1
+version: 2
2
+jobs:
3
+ build:
4
+ working_directory: ~/django-mako
5
+ docker:
6
+ - image: circleci/python:3.6.7
7
+ steps:
8
+ - checkout
9
+ - run: sudo chown -R circleci:circleci /usr/local/bin
10
+ - run: sudo chown -R circleci:circleci /usr/local/lib/python3.6/site-packages
11
+ - run:
12
+ command: |
13
+ pip install -r requirements.txt
14
15
16
+ python manage.py test
17
+ - store_test_results:
18
+ path: test-results
19
+ - store_artifacts:
20
21
+ destination: tr1
0 commit comments