diff options
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/doctest.yml | 4 | ||||
-rw-r--r-- | .github/workflows/python.yml | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/doctest.yml b/.github/workflows/doctest.yml index 904ed376..272453d3 100644 --- a/.github/workflows/doctest.yml +++ b/.github/workflows/doctest.yml @@ -1,4 +1,4 @@ -name: Python doctest and manpage-completion +name: Python pytest, doctest and manpage-completion on: push: @@ -27,4 +27,4 @@ jobs: pip install -r requirements.txt - name: doctest run: | - make test_doctest test_other + make test_pytest test_doctest test_other diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index 073b78a6..59558a20 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -25,6 +25,6 @@ jobs: run: | python -m pip install --upgrade pip pip install -r requirements.txt - - name: Lint and test with pylint, flake8, -d-o-c-t-e-s-t-, -m-a-n-c-o-m-p-l-e-t-e- + - name: Lint and test with pylint, flake8, but not -d-o-c-t-e-s-t-, -m-a-n-c-o-m-p-l-e-t-e- run: | make test_pylint test_flake8 test_pytest |