There was an error while loading. Please reload this page.
1 parent 5c193d9 commit 09962b7Copy full SHA for 09962b7
.circleci/config.yml
@@ -3,18 +3,15 @@ jobs:
3
build:
4
working_directory: ~/django-multi-form-view
5
docker:
6
- - image: circleci/python:3.6.4
+ - image: circleci/python:3.6.4-browsers
7
steps:
8
- checkout # checkout source code to working directory
9
- run:
10
- name: Install Python deps in a venv
+ name: Run Tests
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
0 commit comments