diff options
author | 2022-10-09 21:44:47 +0300 | |
---|---|---|
committer | 2022-10-10 18:54:54 +0300 | |
commit | 918ca1cd1a91109386d340fc6c121a361f35d9a1 (patch) | |
tree | 5529df69fe1befa4308964ff2c99898585a36cd5 /.github | |
parent | ci: use deploy using github actions instead of branch (diff) | |
download | snakeoil-918ca1cd1a91109386d340fc6c121a361f35d9a1.tar.gz snakeoil-918ca1cd1a91109386d340fc6c121a361f35d9a1.tar.bz2 snakeoil-918ca1cd1a91109386d340fc6c121a361f35d9a1.zip |
compression/_bzip2: add tests
Add tests for all modes used by compression._bzip2 to compress and
decompress data.
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/test.yml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b512934d..bdff1444 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -40,6 +40,11 @@ jobs: python -m pip install --upgrade pip pip install .[test] + - name: Install non-python deps + if: ${{ matrix.os == 'ubuntu-latest' }} + run: | + sudo apt install lbzip2 + - name: Test with pytest env: PY_COLORS: 1 # forcibly enable pytest colors |