From eb1a4ddb4b893399ed5f37e992425826576c823c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B8rgen=20S=2E=20Dokken?= Date: Mon, 29 Apr 2024 17:00:10 +0200 Subject: [PATCH] Add back debug --- tests/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/conftest.py b/tests/conftest.py index f14be09..0948066 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -15,7 +15,7 @@ def cluster(): cluster = ipp.Cluster(engines="mpi", n=2) rc = cluster.start_and_connect_sync() - print(rc[:].apply_sync(os.getcwd).get()) + print(rc[:].apply_sync(os.chdir, os.getcwd())) yield rc cluster.stop_cluster_sync()