From 64c40174588d41a1edffb2512aa6079114d950c6 Mon Sep 17 00:00:00 2001 From: Dan Palmer Date: Fri, 16 Feb 2018 10:04:10 +0000 Subject: [PATCH] Rename these stages --- .circleci/config.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index f856eb2b..9c7b53da 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -47,7 +47,7 @@ jobs: name: Restore .tox cache key: deps-tox-{{ .Branch }}-{{ checksum "scripts/linting/requirements.txt" }}-{{ checksum "scripts/typechecking/requirements.txt" }}-{{ checksum "scripts/testing/requirements.txt" }}-{{ checksum "setup.py" }} - run: - name: Test/Lint/Typecheck + name: Test command: | . venv/bin/activate TOXENV=py36 tox @@ -93,7 +93,7 @@ jobs: name: Restore .tox cache key: deps-tox-{{ .Branch }}-{{ checksum "scripts/linting/requirements.txt" }} - run: - name: Test/Lint/Typecheck + name: Lint command: | . venv/bin/activate TOXENV=lint tox @@ -129,7 +129,7 @@ jobs: name: Restore .tox cache key: deps-tox-{{ .Branch }}-{{ checksum "scripts/typechecking/requirements.txt" }} - run: - name: Test/Lint/Typecheck + name: Typecheck command: | . venv/bin/activate TOXENV=mypy tox