Skip to content

Commit 96cfcbf

Browse files
committed
mute atari to speed up test
1 parent 21d8578 commit 96cfcbf

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

test/test_atari.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,13 @@
88

99
class AtariTest(unittest.TestCase):
1010

11+
@unittest.skipIf(environ.get('CI'), "Delay CI test until dev stable")
1112
@classmethod
1213
def test_breakout_dqn(cls):
1314
data_df = run('breakout_dqn')
1415
assert isinstance(data_df, pd.DataFrame)
1516

17+
@unittest.skipIf(environ.get('CI'), "Delay CI test until dev stable")
1618
@classmethod
1719
def test_breakout_double_dqn(cls):
1820
data_df = run('breakout_double_dqn')

0 commit comments

Comments
 (0)