Skip to content

Commit

Permalink
fix: use a better test directory for skopeo
Browse files Browse the repository at this point in the history
  • Loading branch information
lengau committed Jun 10, 2024
1 parent efea59c commit 7e0e259
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/unit/utils/test_skopeo.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,9 @@ def test_find_skopeo_success(fake_process):
pytest.param({"os": "linux"}, ["--override-os", "linux"], id="os-linux"),
pytest.param({"os": "bsd"}, ["--override-os", "bsd"], id="os-bsd"),
pytest.param(
{"tmpdir": pathlib.Path("/run/user/1000")}, ["--tmpdir", "/run/user/1000"], id="tmpdir"
{"tmpdir": pathlib.Path("/tmp/skopeo_tmp")},
["--tmpdir", "/tmp/skopeo_tmp"],
id="tmpdir",
),
],
)
Expand Down

0 comments on commit 7e0e259

Please sign in to comment.