We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b60393f commit d43e28dCopy full SHA for d43e28d
.github/workflows/tests.yml
@@ -136,10 +136,6 @@ jobs:
136
- name: Unit Tests (FUSE 3)
137
if: startsWith( matrix.os, 'ubuntu' )
138
run: |
139
- if [[ $LIBFUSE_VERSION == system ]]; then
140
- export FUSE_LIBRARY_PATH=$( dpkg -L libfuse3-3 | 'grep' -F .so | head -1 )
141
- else
142
- export FUSE_LIBRARY_PATH=/usr/local/lib/x86_64-linux-gnu/libfuse3.so.$LIBFUSE_VERSION
143
- fi
+ export FUSE_LIBRARY_PATH=$( dpkg -L libfuse3-3 | 'grep' -F .so | head -1 )
144
python3 -c 'import mfusepy; assert mfusepy.fuse_version_major == 3'
145
python3 -m pytest tests
0 commit comments