Skip to content

Commit

Permalink
add ac, ddpg tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kengz committed Apr 19, 2017
1 parent be6c2a9 commit 0b50a69
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions test/test_advanced.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,3 +51,13 @@ def test_breakout_dqn(cls):
def test_breakout_double_dqn(cls):
data_df = run('breakout_double_dqn')
assert isinstance(data_df, pd.DataFrame)

@classmethod
def test_cartpole_ac_argmax(cls):
data_df = run('cartpole_ac_argmax')
assert isinstance(data_df, pd.DataFrame)

@classmethod
def test_pendulum_ddpg(cls):
data_df = run('pendulum_ddpg')
assert isinstance(data_df, pd.DataFrame)

0 comments on commit 0b50a69

Please sign in to comment.