From 8cb950826c0d43db58b27dbced9f480ee06a16d6 Mon Sep 17 00:00:00 2001 From: Oscar Gustafsson <oscar.gustafsson@gmail.com> Date: Mon, 23 Jan 2023 12:20:20 +0100 Subject: [PATCH] Remove leftover print-statements --- test/conftest.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/test/conftest.py b/test/conftest.py index 92cc632c..baf848e2 100644 --- a/test/conftest.py +++ b/test/conftest.py @@ -12,11 +12,8 @@ import pytest @pytest.fixture def datadir(tmpdir, request): - print(tmpdir, request) filename = request.module.__file__ - print(filename) test_dir, ext = os.path.splitext(filename) - print(test_dir, ext) if os.path.isdir(test_dir): dir_util.copy_tree(test_dir, str(tmpdir)) -- GitLab