Skip to content

Commit

Permalink
Disable tests in Julia
Browse files Browse the repository at this point in the history
  • Loading branch information
TheoCabannes committed Jun 9, 2021
1 parent 4149135 commit 1f29aff
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion open_spiel/julia/test/games_simulation.jl
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,11 @@ MAX_ACTIONS_PER_GAME = 1000
SPIEL_GAMES_LIST = registered_games()

SPIEL_LOADABLE_GAMES_LIST = [
g for g in SPIEL_GAMES_LIST if default_loadable(g)
g for g in SPIEL_GAMES_LIST
if default_loadable(g) &&
(short_name(g) != "mfg_crowd_modelling_2d")
]
# TODO(perolat): enable mfg_crowd_modelling_2d test

@test length(SPIEL_LOADABLE_GAMES_LIST) >= 38

Expand Down

0 comments on commit 1f29aff

Please sign in to comment.