diff --git a/.circleci/config.yml b/.circleci/config.yml index 5f71106..b518487 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -5,31 +5,29 @@ version: 2 jobs: - # using tox - toxify: + # using tox + toxify: - docker: - - image: python:3.7 + docker: + - image: circleci/python:3.7 - steps: + steps: + - checkout + # download and cache dependencies + - restore_cache: + keys: + - v1-dependencies-{{ checksum "requirements.txt" }} + # fallback to using the latest cache if no exact match is found + - v1-dependencies- - - checkout - - # Download and cache dependencies - - restore_cache: - keys: - - v1-dependencies-{{ checksum "requirements.txt" }} - # fallback to using the latest cache if no exact match is found - - v1-dependencies- - - - run: pip install tox && tox + - run: pip install tox && tox workflows: - version: 2 + version: 2 - myproj: - jobs: - - toxify + cvdata: + jobs: + - toxify #jobs: # build: diff --git a/tox.ini b/tox.ini index 7776e89..287bfae 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py{36,37,},coverage +envlist = py36,py37,coverage # Define the minimal tox version required to run; if the host # tox is less than this the tool with create an environment and @@ -21,4 +21,5 @@ deps = commands = python setup.py check -m -s py.test tests {posargs} + coverage