From acabc7c0f32a8dad1c0052dcfee5c24c69e78222 Mon Sep 17 00:00:00 2001 From: giumas Date: Sat, 4 May 2024 13:36:20 +0200 Subject: [PATCH] fixed issues in GitHub actions --- .github/workflows/hdf-compass_on_linux.yml | 6 +++--- .github/workflows/hdf-compass_on_windows.yml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/hdf-compass_on_linux.yml b/.github/workflows/hdf-compass_on_linux.yml index f2676c6..7401a76 100644 --- a/.github/workflows/hdf-compass_on_linux.yml +++ b/.github/workflows/hdf-compass_on_linux.yml @@ -33,14 +33,14 @@ jobs: run: | conda install flake8 # stop the build if there are Python syntax errors or undefined names - flake8 ./hdf-compass --count --select=E9,F63,F7,F82 --show-source --statistics + flake8 ./hdf_compass --count --select=E9,F63,F7,F82 --show-source --statistics # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide - flake8 ./hdf-compass --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics + flake8 ./hdf_compass --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics continue-on-error: true - name: Test with pytest run: | pip install coveralls PyYAML pytest pytest-cov py.test --cov coverage report -m - coveralls + # coveralls continue-on-error: false diff --git a/.github/workflows/hdf-compass_on_windows.yml b/.github/workflows/hdf-compass_on_windows.yml index 3d15191..edbab31 100644 --- a/.github/workflows/hdf-compass_on_windows.yml +++ b/.github/workflows/hdf-compass_on_windows.yml @@ -32,14 +32,14 @@ jobs: run: | conda install flake8 # stop the build if there are Python syntax errors or undefined names - flake8 .\hdf-compass --count --select=E9,F63,F7,F82 --show-source --statistics + flake8 .\hdf_compass --count --select=E9,F63,F7,F82 --show-source --statistics # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide - flake8 .\hdf-compass --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics + flake8 .\hdf_compass --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics continue-on-error: true - name: Test with pytest run: | pip install coveralls PyYAML pytest pytest-cov py.test --cov coverage report -m - coveralls + # coveralls continue-on-error: false