From b1fee8e2c91ab214842f052e8053d9e68944ce0a Mon Sep 17 00:00:00 2001 From: =?utf8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Tue, 6 Apr 2021 20:40:32 +0200 Subject: [PATCH] package/ci: run tests verbose so it's clear what got skipped. --- package/ci/circleci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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: -- 2.30.2