chiark / gitweb /
package/ci: run tests verbose so it's clear what got skipped.
authorVladimír Vondruš <mosra@centrum.cz>
Tue, 6 Apr 2021 18:40:32 +0000 (20:40 +0200)
committerVladimír Vondruš <mosra@centrum.cz>
Tue, 6 Apr 2021 18:40:32 +0000 (20:40 +0200)
package/ci/circleci.yml

index 68272e6cc865c775b5fd0b2af44e1d6fbab6fc40..cd1b21af04e9cbe69509ba2605f0402245f74cfa 100644 (file)
@@ -74,7 +74,7 @@ commands:
         name: Test the theme
         command: |
           cd pelican-theme
-          python -m unittest
+          python -m unittest -v
     - run:
         name: Verify compiled CSS is up-to-date
         command: |
@@ -90,7 +90,7 @@ commands:
         # TODO: add tests for the math plugin as well
         command: |
           cd plugins
-          coverage run -m unittest
+          coverage run -m unittest -v
           cp .coverage ../.coverage.plugins
 
   test-documentation-themes:
@@ -140,7 +140,7 @@ commands:
         name: Test documentation themes
         command: |
           cd documentation
-          coverage run -m unittest
+          coverage run -m unittest -v
           cp .coverage ../.coverage.documentation
 
   test-search: