Skip to content

Commit 8ddbfe2

Browse files
committed
Circle 2.0 up and running
1 parent 9e61d9b commit 8ddbfe2

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.circleci/config.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
- run:
15+
command: |
16+
python manage.py test
17+
- store_test_results:
18+
path: test-results
19+
- store_artifacts:
20+
path: test-results
21+
destination: tr1

0 commit comments

Comments
 (0)