clearml-agent/tests/scripts/python3-test.py

9 lines
136 B
Python
Raw Normal View History

2019-10-25 19:28:44 +00:00
def main():
if not (1 / 2 == 0.5):
raise ValueError('failure')
print('success')
if __name__ == "__main__":
main()