ray/rllib/tests/test_algorithm_imports.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
418 B
Python
Raw Normal View History

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__]))