From 9ce04b77fb16c5968204fa641436a4032cfff935 Mon Sep 17 00:00:00 2001 From: Marten Chaillet <58044494+McHaillet@users.noreply.github.com> Date: Fri, 28 Jun 2024 12:42:43 +0200 Subject: [PATCH] update entry point test with rng seed --- tests/test_entry_points.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/test_entry_points.py b/tests/test_entry_points.py index 25b34c03..8f12d387 100644 --- a/tests/test_entry_points.py +++ b/tests/test_entry_points.py @@ -157,6 +157,10 @@ def start(arg_dict): # simplify run # phase randomization test arguments = defaults.copy() arguments["-r"] = "" + arguments["-r"] = "" + start(arguments) + # test if we can set the rng seed, see issue #194 + arguments["--rng-seed"] = "42" start(arguments) # test debug files