From a1fd106bf3e74ce0e6508a8bcb73cb433dab4a50 Mon Sep 17 00:00:00 2001 From: Alex Stokes Date: Mon, 2 Dec 2019 16:01:06 -0800 Subject: [PATCH] Ensure correct names of test envs in circle ci --- .circleci/config.yml | 20 +++++++------------- 1 file changed, 7 insertions(+), 13 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index fa7691e6..c3094b9b 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -48,30 +48,24 @@ jobs: - image: circleci/python:3.6 environment: TOXENV: lint - py36-core: + py36-test: <<: *common docker: - image: circleci/python:3.6 environment: - TOXENV: py36-core - py37-core: + TOXENV: py36-test + py37-test: <<: *common docker: - image: circleci/python:3.7 environment: - TOXENV: py37-core - pypy3-core: - <<: *common - docker: - - image: pypy - environment: - TOXENV: pypy3-core + TOXENV: py37-test + workflows: version: 2 test: jobs: - docs - lint - - py36-core - - py37-core - - pypy3-core + - py36-test + - py37-test