We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6608a90 + 1e8e6ad commit 1bb489aCopy full SHA for 1bb489a
tests/.ci/submit_azureml_pytest.py
@@ -46,6 +46,7 @@
46
from azureml.core.compute import ComputeTarget, AmlCompute
47
from azureml.core.compute_target import ComputeTargetException
48
from azureml.core.workspace import WorkspaceException
49
+import azureml._restclient.snapshots_client
50
51
52
def setup_workspace(
@@ -384,6 +385,9 @@ def create_arg_parser():
384
385
logger.setLevel(logging.INFO)
386
# logging.basicConfig(level=logging.DEBUG)
387
args = create_arg_parser()
388
+
389
+ # Allow snapshots of more than 300MB
390
+ azureml._restclient.snapshots_client. SNAPSHOT_MAX_SIZE_BYTES = 1000*(1024*1024)
391
392
if args.dockerproc == "cpu":
393
from azureml.core.runconfig import DEFAULT_CPU_IMAGE
0 commit comments