From 4beb7407bb4b696dc7fca2ae480ed37bb05bbf58 Mon Sep 17 00:00:00 2001 From: Anselm Hahn Date: Thu, 29 Oct 2020 20:50:55 +0100 Subject: [PATCH] Fixed Issue: Add a flake8 statistic #152 --- .circleci/config.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 4bfa368833..fb87b88c5b 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -45,6 +45,11 @@ jobs: pip install pytest pip install -r requirements.txt pip install -e . + - run: + name: "Checking code style" + command: | + pip install flake8 + flake8 . --count --exit-zero --max-complexity=10 --statistics - run: name: "Running tests" command: |