def test_download(set_env): # TODO: implement download with pytest.raises(SystemExit) as pytest_wrapped_e: cloud = store("gcp") pytest_wrapped_e.value == 1 return True
def test_download(): cloud = store("aws") return True
def test_upload(): cloud = store("aws") return True
def test_download(env_setup): cloud = store("azure") # TODO: test download return True
def test_download(): try: store("baidu") except NotImplementedError: return True
def test_cloud(): store("aws") return True