Skip to content

Commit 1ea63d0

Browse files
committed
[tmp] Disable some tests
1 parent da178a9 commit 1ea63d0

File tree

2 files changed

+4
-9
lines changed

2 files changed

+4
-9
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ jobs:
6363
mypy --config-file tests/.mypy.ini $( git ls-tree -r --name-only HEAD | 'grep' -E '[.]py$' )
6464
6565
Tests:
66+
if: false
6667
runs-on: ${{ matrix.os }}
6768

6869
strategy:
@@ -194,17 +195,9 @@ jobs:
194195
timeout-minutes: 10
195196

196197
strategy:
198+
fail-fast: false
197199
matrix:
198200
include:
199-
- os: freebsd
200-
version: '14.3'
201-
display_name: FreeBSD
202-
- os: freebsd
203-
version: '13.5'
204-
display_name: FreeBSD
205-
- os: openbsd
206-
version: '7.7'
207-
display_name: OpenBSD
208201
# OpenBSD 6.9 is not supported because it only has Python 3.8, which is not supported anymore.
209202
# NetBSD 9.4 is not supported because its interface seems to mirror libFUSE 2.6 and therefore is HIGHLY
210203
# incompatible. Even fuse_context.umask is missing!

mfusepy.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,8 @@ def get_fuse_version(libfuse):
158158
f"Found library {_libfuse_path} has wrong major version: {fuse_version_major}. Expected FUSE 2!"
159159
)
160160

161+
print("FOUND FUSE LIBRARY VERSION:", fuse_version_major, fuse_version_minor)
162+
161163
if _system == 'NetBSD' and (fuse_version_major, fuse_version_minor) == (2, 9):
162164
# For some reason, NetBSD return 2.9 even though the API is 3.10!
163165
# The correct version is important for the struct layout!

0 commit comments

Comments
 (0)