about summary refs log tree commit diff stats
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/doctest.yml4
-rw-r--r--.github/workflows/python.yml2
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
'>123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150