From 6133082ff970383b20c5ae8e2c70dabceaa29aa1 Mon Sep 17 00:00:00 2001 From: Tilman Kerl Date: Fri, 8 Dec 2023 17:03:33 +0100 Subject: [PATCH] Update python-app.yml --- .github/workflows/python-app.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml index e81c4a7..a6090c9 100644 --- a/.github/workflows/python-app.yml +++ b/.github/workflows/python-app.yml @@ -22,9 +22,9 @@ jobs: run: | conda install flake8 # Lint using flake8 with settings from .flake8 file - flake8 --config .flake8 + python -m flake8 --config .flake8 - name: Test with pytest run: | conda install pytest - pytest + python -m pytest