We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9466da8 commit ed8e151Copy full SHA for ed8e151
.circleci/config.yml
@@ -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
17
+ name: run behave test
18
19
+ coverage run demo/manage.py behave
20
+ codecov
circle.yml
0 commit comments