From 80e0804463ebcf03681fd3d65c0cce710a9ada16 Mon Sep 17 00:00:00 2001 From: Kyle Mandli Date: Fri, 10 May 2024 13:45:18 -0400 Subject: [PATCH] Exclude old_topotools.py Do not want to touch the old topotools file for reference. --- .github/workflows/testing.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index 9b1e98998..b4cedfc69 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -45,7 +45,7 @@ jobs: run: | cd geoclaw # stop the build if there are Python syntax errors or undefined names - flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics + flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics --exclude old_dtopotools.py # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics - name: Test with pytest