From 4a3cfe211ef46cc55382cd242fa62d47e74134ed Mon Sep 17 00:00:00 2001 From: Yee Kit Date: Fri, 19 Jan 2024 14:59:48 +0800 Subject: [PATCH] Update python-tests.yml --- .github/workflows/python-tests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/python-tests.yml b/.github/workflows/python-tests.yml index 897a75a..ed98c08 100644 --- a/.github/workflows/python-tests.yml +++ b/.github/workflows/python-tests.yml @@ -33,10 +33,10 @@ jobs: working-directory: ./backend run: | # stop the build if there are Python syntax errors or undefined names - flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics + python -m flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics # 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 + python -m flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics - name: Test with pytest working-directory: ./backend run: | - pytest + python -m pytest