Skip to content

Commit

Permalink
don't test on MiniBossLevel, it's too hard
Browse files Browse the repository at this point in the history
  • Loading branch information
rizar committed Jan 24, 2019
1 parent cf58b42 commit 370d65e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@ script:
# Check that the bot works on a few episodes of Boss Level
- python3 -m scripts.eval_bot --level BossLevel --num_runs 50
- python3 -m scripts.eval_bot --level BossLevel --num_runs 50 --advise_mode --non_optimal_steps 100 --bad_action_proba .3
# Test the bot on MiniBossLevel, cause it is especially good for testing unblocking
- python3 -m scripts.eval_bot --level MiniBossLevel --num_runs 50
# Check that the bot works on a single episode from each level
- python3 -m scripts.eval_bot --num_runs 1

Expand Down
2 changes: 1 addition & 1 deletion scripts/eval_bot.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

# MissBossLevel is the only level the bot currently can't always handle
level_list = [name for name, level in level_dict.items()
if not getattr(level, 'is_bonus', False)]
if (not getattr(level, 'is_bonus', False) and not name == 'MiniBossLevel')]


parser = OptionParser()
Expand Down

0 comments on commit 370d65e

Please sign in to comment.