From 33cd0e240640df400620321b8d155745c31f185e Mon Sep 17 00:00:00 2001 From: Stephan Seitz <stephan.seitz@fau.de> Date: Tue, 20 Aug 2019 12:10:19 +0200 Subject: [PATCH] conftest: add missing file to tests that require kerncraft --- conftest.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/conftest.py b/conftest.py index 1502422ee..b1368c962 100644 --- a/conftest.py +++ b/conftest.py @@ -48,7 +48,8 @@ except ImportError: try: import kerncraft except ImportError: - collect_ignore += [os.path.join(SCRIPT_FOLDER, "pystencils_tests/test_kerncraft_coupling.py")] + collect_ignore += [os.path.join(SCRIPT_FOLDER, "pystencils_tests/test_kerncraft_coupling.py"), + os.path.join(SCRIPT_FOLDER, "pystencils_tests/benchmark/benchmark.py")] add_path_to_ignore('pystencils/kerncraft_coupling') try: -- GitLab