mirror of
https://github.com/vale981/ray
synced 2025-03-06 10:31:39 -05:00

Fixing special cases (e.g. smoke tests, long running tests) in the release test package infrastructure. Prepare migration of Tune and XGBoost tests.
14 lines
192 B
Python
14 lines
192 B
Python
import json
|
|
import sys
|
|
|
|
|
|
def main():
|
|
argv_file = sys.argv[1]
|
|
with open(argv_file, "wt") as fp:
|
|
json.dump(sys.argv, fp)
|
|
|
|
sys.exit(0)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|