mirror of
https://github.com/vale981/ray
synced 2025-03-06 02:21:39 -05:00
23 lines
418 B
Python
23 lines
418 B
Python
import unittest
|
|
|
|
import ray
|
|
from ray.rllib.agents.registry import ALGORITHMS
|
|
|
|
|
|
class TestAlgorithmImport(unittest.TestCase):
|
|
def setUp(self):
|
|
ray.init()
|
|
|
|
def tearDown(self):
|
|
ray.shutdown()
|
|
|
|
def test_algo_import(self):
|
|
for name, func in ALGORITHMS.items():
|
|
func()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
import pytest
|
|
import sys
|
|
|
|
sys.exit(pytest.main(["-v", __file__]))
|