From 65d1fdeaa3aa897b09bde4aa17a10afffb1fd9eb Mon Sep 17 00:00:00 2001
From: Monika Kairaityte <monika@kibit.lt>
Date: Sat, 8 Jun 2024 19:52:12 +0300
Subject: [PATCH] github: Add verbose option to integration tests

Currently it is not possible to see which test output corresponds to
which test exactly. Now before each new test its test name is printed.

Signed-off-by: Monika Kairaityte <monika@kibit.lt>
---
 .github/workflows/test.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 144ab72..76d88f7 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -28,7 +28,7 @@ jobs:
         if [ -f test-requirements.txt ]; then pip install -r test-requirements.txt; fi
     - name: Run tests in tests/
       run: |
-        python -m unittest tests/*.py
+        python -m unittest -v tests/*.py
       env:
         TESTS_DEBUG: 1
     - name: Run tests in pytests/