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