aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/test/py/conftest.py
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2023-07-09 20:54:44 +0200
committerEgor Tensin <Egor.Tensin@gmail.com>2023-07-09 22:34:03 +0200
commitf43b435fddedc83e4c1fa709b90354e128b65416 (patch)
tree44032993fb89789ee9fd9f85cac01a3c7a0f105a /test/py/conftest.py
parenttest: test empty CI run output, refactoring (diff)
downloadcimple-f43b435fddedc83e4c1fa709b90354e128b65416.tar.gz
cimple-f43b435fddedc83e4c1fa709b90354e128b65416.zip
test: prettier test names
Diffstat (limited to '')
-rw-r--r--test/py/conftest.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/py/conftest.py b/test/py/conftest.py
index e087dd1..6102898 100644
--- a/test/py/conftest.py
+++ b/test/py/conftest.py
@@ -188,7 +188,8 @@ def client(client_cmd):
return client_cmd
-@fixture(params=[TestRepoOutputSimple, TestRepoOutputEmpty])
+@fixture(params=[TestRepoOutputSimple, TestRepoOutputEmpty],
+ ids=['output_simple', 'output_empty'])
def test_repo(tmp_path, request):
return request.param(os.path.join(tmp_path, 'repo'))