From ba4ad34fdcb806f358f4aa28368d66af16ebd340 Mon Sep 17 00:00:00 2001 From: Holger <holger@nahrstaedt.de> Date: Sat, 22 Sep 2018 12:25:11 +0200 Subject: [PATCH] fix circleci --- .circleci/config.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 0889e43a..baa1b7a6 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -119,6 +119,28 @@ jobs: name: run tests command: | 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: version: 2 build: -- GitLab