From c348fc623774c6b2fb56499ab82702291e784a2d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B8rgen=20S=2E=20Dokken?= Date: Mon, 29 Apr 2024 16:26:02 +0200 Subject: [PATCH] Debug sys path --- tests/conftest.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/conftest.py b/tests/conftest.py index 0e16ddb..b3ef846 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -9,10 +9,16 @@ import adios4dolfinx + +def get_sys_path(): + import sys + return sys.path + @pytest.fixture(scope="module") def cluster(): cluster = ipp.Cluster(engines="mpi", n=2) rc = cluster.start_and_connect_sync() + print(rc[:].apply_sync(get_sys_path)) yield rc cluster.stop_cluster_sync()