Skip to content

Commit

Permalink
update entry point test with rng seed
Browse files Browse the repository at this point in the history
  • Loading branch information
McHaillet authored Jun 28, 2024
1 parent 1d84695 commit 9ce04b7
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/test_entry_points.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 9ce04b7

Please sign in to comment.