mirror of
https://github.com/wassname/ray.git
synced 2026-06-28 03:50:55 +08:00
13 lines
177 B
Python
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__]))
|