Skip to content
Snippets Groups Projects
Commit ba4ad34f authored by Holger's avatar Holger
Browse files

fix circleci

parent 476656c6
No related branches found
No related tags found
No related merge requests found
...@@ -119,6 +119,28 @@ jobs: ...@@ -119,6 +119,28 @@ jobs:
name: run tests name: run tests
command: | command: |
tox -e py35 tox -e py35
build-python3.7:
docker:
- image: circleci/python:3.7.0
working_directory: ~/repo
steps:
- checkout
# Download and cache dependencies
- restore_cache:
keys:
- v1-dependencies-{{ checksum "requirements-test.txt" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-
- run:
name: install dependencies
command: |
sudo python -m pip install --upgrade -r requirements-test.txt
- run:
name: run tests
command: |
tox -e py37
workflows: workflows:
version: 2 version: 2
build: build:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment