From: Vladimír Vondruš Date: Tue, 6 Apr 2021 18:40:32 +0000 (+0200) Subject: package/ci: run tests verbose so it's clear what got skipped. X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~cjwatson/git?a=commitdiff_plain;h=b1fee8e2c91ab214842f052e8053d9e68944ce0a;p=blog.git package/ci: run tests verbose so it's clear what got skipped. --- diff --git a/package/ci/circleci.yml b/package/ci/circleci.yml index 68272e6c..cd1b21af 100644 --- a/package/ci/circleci.yml +++ b/package/ci/circleci.yml @@ -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: