File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments