Skip to content

Commit e047269

Browse files
committed
wip
1 parent 67695cf commit e047269

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
3636
- name: Install dependencies
3737
run: |
38-
sudo apt-get install -y pbzip2 pigz lzop liblz4-tool
38+
sudo apt-get install -y pigz lzop liblz4-tool
3939
python3 -m pip install --upgrade pip
4040
python3 -m pip install build
4141

tests/test_api_base.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,11 +88,11 @@ def _generate_compressed_files(file_path, delete=True):
8888
directory = os.path.dirname(file_path)
8989

9090
compressors = [
91-
("bzip2", None, ".bz2", "-c -k"),
92-
("pbzip2", None, ".p.bz2", "-c -k"),
9391
("gzip", None, ".gz", "-c"),
9492
("pigz", None, ".p.gz", "-c -k"),
9593
("xz", None, ".xz", "-c -k"),
94+
("bzip2", None, ".bz2", "-c -k"),
95+
("pbzip2", None, ".p.bz2", "-c -k"),
9696
("lzop", None, ".lzo", "-c -k"),
9797
("lz4", None, ".lz4", "-c -k"),
9898
("zstd", None, ".zst", "-c -k"),

0 commit comments

Comments
 (0)