From 56c2c7ee8bb8c4a66a9b8a45fa5c63aaf6f22cc4 Mon Sep 17 00:00:00 2001 From: Markus Holzer <markus.holzer@fau.de> Date: Wed, 13 Apr 2022 17:28:10 +0200 Subject: [PATCH] Try to fix windows pipeline --- lbmpy_tests/test_lbstep.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lbmpy_tests/test_lbstep.py b/lbmpy_tests/test_lbstep.py index 86131385..f5184b37 100644 --- a/lbmpy_tests/test_lbstep.py +++ b/lbmpy_tests/test_lbstep.py @@ -91,7 +91,7 @@ def test_advanced_initialization(): init_vel[:, height // 3: height // 3 * 2, 0] = -velocity_magnitude # small random y velocity component init_vel[:, :, 1] = 0.1 * velocity_magnitude * np.random.rand(width, height) - shear_flow_scenario = create_fully_periodic_flow(initial_velocity=init_vel, relaxation_rate=1.95) + shear_flow_scenario = create_fully_periodic_flow(initial_velocity=init_vel, relaxation_rate=1.99) with pytest.raises(ValueError) as e: shear_flow_scenario.run_iterative_initialization(max_steps=20000, check_residuum_after=500) assert 'did not converge' in str(e.value) -- GitLab