We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2b18aac commit 060402eCopy full SHA for 060402e
1 file changed
tests/unit/utils/test_data_upload.py
@@ -405,13 +405,15 @@ def test_promote_full_release_orders_full_release_operations(
405
monkeypatch.setattr(
406
data_upload,
407
"publish_release_manifest_to_hf",
408
- lambda files_with_paths, **kwargs: calls.append("release_manifest")
409
- or {
410
- "artifacts": {
411
- Path(repo_path).with_suffix("").as_posix(): {"path": repo_path}
412
- for _, repo_path in files_with_paths
+ lambda files_with_paths, **kwargs: (
+ calls.append("release_manifest")
+ or {
+ "artifacts": {
+ Path(repo_path).with_suffix("").as_posix(): {"path": repo_path}
413
+ for _, repo_path in files_with_paths
414
+ }
415
}
- },
416
+ ),
417
)
418
419
0 commit comments