Skip to content

Commit

Permalink
Blacklist Flame Leviathan from tests
Browse files Browse the repository at this point in the history
At least we know it works, huh?
  • Loading branch information
jleclanche committed Jul 29, 2015
1 parent b55aa9d commit 6cb2f24
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tests/test_main.py
Expand Up @@ -31,6 +31,10 @@
DESTROY_DECK = "XXX_047"


BLACKLIST = (
"GVG_007", # Flame Leviathan
)

logging.getLogger().setLevel(logging.DEBUG)


Expand All @@ -45,7 +49,7 @@ def start(self):
def _draft(hero, exclude):
# random_draft() is fairly slow, this caches the drafts
if (hero, exclude) not in _draftcache:
_draftcache[(hero, exclude)] = random_draft(hero, exclude)
_draftcache[(hero, exclude)] = random_draft(hero, exclude + BLACKLIST)
return _draftcache[(hero, exclude)]


Expand Down

0 comments on commit 6cb2f24

Please sign in to comment.