From b782f3a2088736499323919252df27c809538c4a Mon Sep 17 00:00:00 2001 From: Antonin RAFFIN Date: Tue, 31 Mar 2020 10:18:56 +0200 Subject: [PATCH] Fix for test failures --- scripts/run_tests.sh | 2 +- tests/test_identity.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/run_tests.sh b/scripts/run_tests.sh index d765f3a..258e302 100755 --- a/scripts/run_tests.sh +++ b/scripts/run_tests.sh @@ -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 diff --git a/tests/test_identity.py b/tests/test_identity.py index 64f6780..87dc6ac 100644 --- a/tests/test_identity.py +++ b/tests/test_identity.py @@ -22,7 +22,7 @@ def test_continuous(model_class): n_steps = { A2C: 3000, PPO: 3000, - SAC: 500, + SAC: 700, TD3: 500 }[model_class]