Skip to content

Commit ed8e151

Browse files
committed
update to circleci 2.0
1 parent 9466da8 commit ed8e151

File tree

2 files changed

+20
-16
lines changed

2 files changed

+20
-16
lines changed

.circleci/config.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
version: 2
2+
jobs:
3+
build:
4+
working_directory: ~/django-multi-form-view
5+
docker:
6+
- image: circleci/python:3.6.4
7+
steps:
8+
- checkout # checkout source code to working directory
9+
- run:
10+
name: Install Python deps in a venv
11+
command: |
12+
python3 -m venv venv
13+
. venv/bin/activate
14+
pip3 install --upgrade pip
15+
pip3 install -r requirements.txt
16+
- run:
17+
name: run behave test
18+
command: |
19+
coverage run demo/manage.py behave
20+
codecov

circle.yml

Lines changed: 0 additions & 16 deletions
This file was deleted.

0 commit comments

Comments
 (0)