mirror of
https://github.com/saymrwulf/stable-baselines3.git
synced 2026-09-16 22:20:26 +00:00
Fix for test failures
This commit is contained in:
parent
fc7b1e80f1
commit
b782f3a208
2 changed files with 2 additions and 2 deletions
|
|
@ -1,2 +1,2 @@
|
||||||
#!/bin/bash
|
#!/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
|
||||||
|
|
|
||||||
|
|
@ -22,7 +22,7 @@ def test_continuous(model_class):
|
||||||
n_steps = {
|
n_steps = {
|
||||||
A2C: 3000,
|
A2C: 3000,
|
||||||
PPO: 3000,
|
PPO: 3000,
|
||||||
SAC: 500,
|
SAC: 700,
|
||||||
TD3: 500
|
TD3: 500
|
||||||
}[model_class]
|
}[model_class]
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue