From d8db0039b9147d1c96a2a69e915fc1250f6b2c89 Mon Sep 17 00:00:00 2001 From: Montgomery Alban Date: Wed, 7 Dec 2022 19:33:44 +0000 Subject: [PATCH] Remove imports --- smarts/env/tests/test_rllib_hiway_env.py | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/smarts/env/tests/test_rllib_hiway_env.py b/smarts/env/tests/test_rllib_hiway_env.py index 90a76f6291..f168c7071f 100644 --- a/smarts/env/tests/test_rllib_hiway_env.py +++ b/smarts/env/tests/test_rllib_hiway_env.py @@ -25,20 +25,10 @@ import numpy as np import pytest -# Make sure to install rllib dependencies using the command "pip install -e .[test]" before running the test -import ray -from ray import tune -from ray.rllib.models import ModelCatalog -from ray.rllib.models.tf.fcnet import FullyConnectedNetwork - -from smarts import sstudio from smarts.core.agent_interface import AgentInterface, AgentType -from smarts.core.utils.file import make_dir_in_smarts_log_dir from smarts.env.rllib_hiway_env import RLlibHiWayEnv from smarts.zoo.agent_spec import AgentSpec -from . import Trainable - AGENT_ID = "Agent-007" INFO_EXTRA_KEY = "__test_extra__"