@@ -364,7 +364,6 @@ def test_log_multiple_output_artifact(under_test):
364364
365365
366366def test_log_pr_curve (under_test ):
367-
368367 y_true = [0 , 0 , 1 , 1 ]
369368 y_scores = [0.1 , 0.4 , 0.35 , 0.8 ]
370369 no_skill = 0.1
@@ -392,7 +391,6 @@ def test_log_pr_curve(under_test):
392391
393392
394393def test_log_confusion_matrix (under_test ):
395-
396394 y_true = [2 , 0 , 2 , 2 , 0 , 1 ]
397395 y_pred = [0 , 0 , 2 , 2 , 0 , 2 ]
398396
@@ -445,7 +443,6 @@ def test_artifact_uploader_init(artifact_uploader):
445443
446444
447445def test_artifact_uploader_upload_artifact_file_not_exists (tempdir , artifact_uploader ):
448-
449446 not_exist_file = os .path .join (tempdir , "not.exists" )
450447 with pytest .raises (ValueError ):
451448 artifact_uploader .upload_artifact (not_exist_file )
@@ -591,7 +588,6 @@ def test_log_table_invalid_values(under_test):
591588
592589
593590def test_log_table (under_test ):
594-
595591 values = {"x" : [1 , 2 , 3 ], "y" : [4 , 5 , 6 ]}
596592
597593 under_test ._artifact_uploader .upload_object_artifact .return_value = ("s3uri_value" , "etag_value" )
@@ -615,7 +611,6 @@ def test_log_table(under_test):
615611
616612
617613def test_log_table_dataframe (under_test ):
618-
619614 dataframe = pd .DataFrame ({"x" : [1 , 2 , 3 ], "y" : [4 , 5 , 6 ]})
620615
621616 under_test ._artifact_uploader .upload_object_artifact .return_value = ("s3uri_value" , "etag_value" )
0 commit comments