Files
ray/python/ray/tests/test_shuffle.py
T
2021-02-04 00:24:16 -08:00

13 lines
177 B
Python

import pytest
import sys
from ray.experimental import shuffle
def test_shuffle():
shuffle.main()
if __name__ == "__main__":
sys.exit(pytest.main(["-v", __file__]))