From b0e718221221f133f5d4dffe73d8a326f0a59907 Mon Sep 17 00:00:00 2001 From: Laurent Courty Date: Sat, 20 Jun 2026 22:02:07 -0600 Subject: [PATCH] fix import of grass tests conftest --- benchmarks/benchmark_tutorial.py | 2 +- benchmarks/conftest.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/benchmarks/benchmark_tutorial.py b/benchmarks/benchmark_tutorial.py index 3b06169..6e03ac3 100644 --- a/benchmarks/benchmark_tutorial.py +++ b/benchmarks/benchmark_tutorial.py @@ -8,7 +8,7 @@ from itzi.configreader import ConfigReader from itzi.profiler import profile_context -from tests.grass_tests.test_tutorial import ( # noqa: F401 +from tests.grass.test_tutorial import ( # noqa: F401 itzi_tutorial, grass_tutorial_session, tutorial_test_file, diff --git a/benchmarks/conftest.py b/benchmarks/conftest.py index 74cc475..057e21a 100644 --- a/benchmarks/conftest.py +++ b/benchmarks/conftest.py @@ -1 +1 @@ -pytest_plugins = ["tests.conftest", "tests.grass_tests.conftest"] +pytest_plugins = ["tests.conftest", "tests.grass.conftest"]