summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/python-package.yml4
-rw-r--r--.github/workflows/release.yml4
-rw-r--r--.github/workflows/weekly.yml2
3 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml
index fe74806..9075bab 100644
--- a/.github/workflows/python-package.yml
+++ b/.github/workflows/python-package.yml
@@ -37,12 +37,12 @@ jobs:
- name: Lint with flake8
run: |
# 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
# 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
run: |
- python -m pytest
+ python -m pytest -v -s -l
upload:
needs: [ build ]
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 79cfb76..806640c 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -38,12 +38,12 @@ jobs:
- name: Lint with flake8
run: |
# 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
# 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
run: |
- python -m pytest
+ python -m pytest -v -s -l
upload:
needs: [ build ]
diff --git a/.github/workflows/weekly.yml b/.github/workflows/weekly.yml
index 5dbe5ed..9d4f76c 100644
--- a/.github/workflows/weekly.yml
+++ b/.github/workflows/weekly.yml
@@ -37,4 +37,4 @@ jobs:
fi
- name: Test with pytest
run: |
- python -m pytest
+ python -m pytest -v -s -l