From 885e77d11bc238c1327ff772d83a44a1747939c0 Mon Sep 17 00:00:00 2001
From: Frederik Hennig <frederik.hennig@fau.de>
Date: Mon, 8 Jul 2024 11:13:25 +0200
Subject: [PATCH] fix test suite without cython

---
 conftest.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/conftest.py b/conftest.py
index 3280b6b3..dad3f63b 100644
--- a/conftest.py
+++ b/conftest.py
@@ -19,9 +19,10 @@ try:
     import pyximport
 
     pyximport.install(language_level=3)
+
+    from lbmpy.phasefield.simplex_projection import simplex_projection_2d  # NOQA
 except ImportError:
     pass
-from lbmpy.phasefield.simplex_projection import simplex_projection_2d  # NOQA
 
 SCRIPT_FOLDER = os.path.dirname(os.path.realpath(__file__))
 sys.path.insert(0, os.path.abspath('lbmpy'))
-- 
GitLab