From 06b216c4b7c2b9d4471fdd15782d426a463d844c Mon Sep 17 00:00:00 2001 From: Juan Sandoval Date: Mon, 12 Feb 2024 16:38:46 -0800 Subject: [PATCH] Make flake8 stop for any error --- .github/workflows/python-app.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml index 2dc3594..afb2b26 100644 --- a/.github/workflows/python-app.yml +++ b/.github/workflows/python-app.yml @@ -27,7 +27,7 @@ jobs: - name: Lint with flake8 run: | # stop the build if there are Python syntax errors or undefined names - flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics + flake8 . --count --show-source --statistics - name: Test with pytest run: | pytest -vv