Skip to content

Commit

Permalink
[tmp][test] Run zip test first
Browse files Browse the repository at this point in the history
  • Loading branch information
mxmlnkn committed Dec 27, 2023
1 parent 2148f54 commit 44fb499
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -131,13 +131,13 @@ jobs:
- name: Test Startup With Only One Compression Dependency
run: |
for module in indexed_gzip indexed_zstd lzmaffi python-xz; do
python3 -m pip install --upgrade "$module"
# Segfaults (139) are not allowed but other exit codes are valid!
# indexed_zstd=1.2.0 did segfault here!
python3 ratarmount.py README.md || [ $? != 139 ]
python3 -m pip uninstall --yes "$module"
done
#for module in indexed_gzip indexed_zstd lzmaffi python-xz; do
# python3 -m pip install --upgrade "$module"
# # Segfaults (139) are not allowed but other exit codes are valid!
# # indexed_zstd=1.2.0 did segfault here!
# python3 ratarmount.py README.md || [ $? != 139 ]
# python3 -m pip uninstall --yes "$module"
#done
python3 -m pip install --upgrade 'git+https://github.com/mxmlnkn/indexed_bzip2.git@zlib-support#egginfo=rapidgzip&subdirectory=python/rapidgzip'
- name: Test ratarmountcore Installation From Tarball
Expand Down Expand Up @@ -183,16 +183,16 @@ jobs:
if: ${{ !startsWith( matrix.os, 'macos' ) }}
run: |
python3 -m pip install pytest
for file in core/tests/test_*.py tests/test_*.py; do
# Fusepy warns about usage of use_ns because the implicit behavior is deprecated.
# But there has been no development to fusepy for 4 years, so I think it should be fine to ignore.
pytest --disable-warnings "$file"
done
#for file in core/tests/test_*.py tests/test_*.py; do
# # Fusepy warns about usage of use_ns because the implicit behavior is deprecated.
# # But there has been no development to fusepy for 4 years, so I think it should be fine to ignore.
# pytest --disable-warnings "$file"
#done
- name: Regression Tests
if: ${{ !startsWith( matrix.os, 'macos' ) }}
run: |
python3 tests/tests.py
#python3 tests/tests.py
bash tests/runtests.sh
- name: Module tests without fusepy
Expand Down

0 comments on commit 44fb499

Please sign in to comment.