Check in shuffle code as experimental (#13899)

This commit is contained in:
Eric Liang
2021-02-04 00:24:16 -08:00
committed by GitHub
parent 243f678ffd
commit e79a380a7e
3 changed files with 226 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
import pytest
import sys
from ray.experimental import shuffle
def test_shuffle():
shuffle.main()
if __name__ == "__main__":
sys.exit(pytest.main(["-v", __file__]))