Skip to content

Commit f27ccf7

Browse files
committed
fixup! [fix] Fix FUSE struct issues on NetBSD
1 parent 864605b commit f27ccf7

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/tests.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ jobs:
255255
256256
# Unit Tests (FUSE 2)
257257
python3 -c 'import mfusepy; assert mfusepy.fuse_version_major == 2'
258-
python3 -m pytest -v -rs tests
258+
python3 -m pytest -s -v -rs tests
259259
;;
260260
openbsd)
261261
# Ensure a proper hostname/FQDN is set (VMs may not have one by default)
@@ -279,7 +279,7 @@ jobs:
279279
python3 -c 'import mfusepy; assert mfusepy.fuse_version_major == 2'
280280
281281
# FUSE mounting only works as root on OpenBSD
282-
sudo -E .venv/bin/python3 -m pytest -v -rs tests
282+
sudo -E .venv/bin/python3 -m pytest -s -v -rs tests
283283
;;
284284
netbsd)
285285
# Ensure a proper hostname/FQDN is set (VMs may not have one by default)
@@ -313,8 +313,9 @@ jobs:
313313
python3 -c 'import mfusepy; assert mfusepy.fuse_version_major == 2'
314314
# preserve pytest exit status, always show logs
315315
rc=0
316+
python3 -m pytest -s -v -rs tests/test_struct_layout.py
316317
# for now, run the tests as root, too many PermissionErrors:
317-
sudo -E python3 -m pytest -v -rs tests || rc=$?
318+
sudo -E python3 -m pytest -s -v -rs tests || rc=$?
318319
exit "$rc"
319320
;;
320321
esac

0 commit comments

Comments
 (0)