Skip to content

Commit

Permalink
added circleci
Browse files Browse the repository at this point in the history
  • Loading branch information
olf42 authored and aparcar committed Nov 12, 2019
1 parent 4018a2a commit e27a8d4
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
version: 2
jobs:
build:
docker:
- image: circleci/python:3.7.3-stretch
steps:
- checkout
- run:
name: Install Python dependencies in a venv
command: |
python3 -m venv venv
. venv/bin/activate
pip install -r requirements-dev.txt
- run:
name: Run tests
command: |
. venv/bin/activate
make test

0 comments on commit e27a8d4

Please sign in to comment.