Skip to content

Commit dde092b

Browse files
Merge pull request borgbackup#9315 from ThomasWaldmann/fix-ci-netbsd-master
CI: fix tmpdir check on netbsd
2 parents ab007a3 + e8f8670 commit dde092b

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/borg/testsuite/helpers/fs_test.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -226,6 +226,7 @@ def test_get_runtime_dir(monkeypatch):
226226
os.path.join("/run/user", uid, "borg"),
227227
os.path.join("/var/run/user", uid, "borg"),
228228
os.path.join(f"/tmp/runtime-{uid}", "borg"),
229+
os.path.join(f"/mnt/eafs/tmp/runtime-{uid}", "borg"), # CI netbsd
229230
]
230231
monkeypatch.setenv("XDG_RUNTIME_DIR", "/var/tmp/.cache")
231232
assert get_runtime_dir(create=False) == os.path.join("/var/tmp/.cache", "borg")

0 commit comments

Comments
 (0)