From ee3873c3e4f5e75049a8d724fdf2180ca8a6916a Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Fri, 20 Aug 2021 12:40:54 +0200 Subject: [PATCH] Put fast tox jobs to fail-fast for contributors --- .circleci/config.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 57dcc453d9a..d9eb78db16f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -33,12 +33,12 @@ jobs: command: | echo 'export PATH=~/.nvm/versions/node/v${NODE_VERSION}/bin:$PATH' >> $BASH_ENV source $BASH_ENV - - run: tox -e migrations - - run: tox -e lint + - run: tox -e codespell - run: tox -e docs-lint - - run: tox -e docs - run: tox -e eslint - - run: tox -e codespell + - run: tox -e migrations + - run: tox -e docs + - run: tox -e lint workflows: version: 2