Skip to content
Snippets Groups Projects
Commit 5b09ef87 authored by Michael Kuron's avatar Michael Kuron :mortar_board:
Browse files

disable phasefield tests on Sympy 1.1

parent 7f1ab7e5
1 merge request!22CI: Replace minimal-ubuntu job with ubuntu
Pipeline #21337 failed with stage
in 1 hour, 23 minutes, and 19 seconds
...@@ -52,6 +52,12 @@ except ImportError: ...@@ -52,6 +52,12 @@ except ImportError:
collect_ignore += [os.path.join(SCRIPT_FOLDER, "lbmpy_tests/benchmark"), collect_ignore += [os.path.join(SCRIPT_FOLDER, "lbmpy_tests/benchmark"),
os.path.join(SCRIPT_FOLDER, "lbmpy_tests/full_scenarios/kida_vortex_flow/scenario_kida_vortex_flow.py")] os.path.join(SCRIPT_FOLDER, "lbmpy_tests/full_scenarios/kida_vortex_flow/scenario_kida_vortex_flow.py")]
import sympy
sver = sympy.__version__.split(".")
if (int(sver[0]) == 1 and int(sver[1]) < 2):
add_path_to_ignore('lbmpy_tests/phasefield')
collect_ignore += [os.path.join(SCRIPT_FOLDER, "lbmpy_tests/test_n_phase_boyer_noncoupled.ipynb")]
collect_ignore += [os.path.join(SCRIPT_FOLDER, 'setup.py')] collect_ignore += [os.path.join(SCRIPT_FOLDER, 'setup.py')]
for root, sub_dirs, files in os.walk('.'): for root, sub_dirs, files in os.walk('.'):
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment