add doctest run to circle-ci

This commit is contained in:
Jason Carver 2018-02-07 14:37:30 -08:00
parent 60b026e3ed
commit 58902032c7
1 changed files with 7 additions and 0 deletions

View File

@ -24,6 +24,12 @@ common: &common
key: cache-{{ .Environment.CIRCLE_JOB }}-{{ checksum "setup.py" }}-{{ checksum "tox.ini" }}
jobs:
doctest:
<<: *common
docker:
- image: circleci/python:3.5
environment:
TOXENV: doctest
lint:
<<: *common
docker:
@ -46,6 +52,7 @@ workflows:
version: 2
test:
jobs:
- doctest
- lint
- py35-core
- py36-core