Fix for test failures

This commit is contained in:
Antonin RAFFIN 2020-03-31 10:18:56 +02:00
parent fc7b1e80f1
commit b782f3a208
2 changed files with 2 additions and 2 deletions

View file

@ -1,2 +1,2 @@
#!/bin/bash
python -m pytest --cov-config .coveragerc --cov-report html --cov-report term --cov=. -v
python3 -m pytest --cov-config .coveragerc --cov-report html --cov-report term --cov=. -v

View file

@ -22,7 +22,7 @@ def test_continuous(model_class):
n_steps = {
A2C: 3000,
PPO: 3000,
SAC: 500,
SAC: 700,
TD3: 500
}[model_class]