Skip to content

Commit e27a8d4

Browse files
olf42aparcar
authored andcommitted
added circleci
1 parent 4018a2a commit e27a8d4

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.circleci/config.yml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
version: 2
2+
jobs:
3+
build:
4+
docker:
5+
- image: circleci/python:3.7.3-stretch
6+
steps:
7+
- checkout
8+
- run:
9+
name: Install Python dependencies in a venv
10+
command: |
11+
python3 -m venv venv
12+
. venv/bin/activate
13+
pip install -r requirements-dev.txt
14+
- run:
15+
name: Run tests
16+
command: |
17+
. venv/bin/activate
18+
make test

0 commit comments

Comments
 (0)