diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 2a8b3a784..2b71b15c5 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -24,6 +24,10 @@ jobs: python -m pip install --upgrade pip python -m pip install tox sphinx + - name: Install optional dependencies + run: | + sudo apt-get install ffmpeg # For replaygain + - name: Test with tox if: matrix.python-version != '3.9' run: | diff --git a/tox.ini b/tox.ini index 64acf1402..16a569344 100644 --- a/tox.ini +++ b/tox.ini @@ -18,8 +18,8 @@ deps = {test,cov}: {[_test]deps} lint: {[_lint]deps} commands = - test: python -bb -m pytest {posargs} - cov: coverage run -m pytest {posargs} + test: python -bb -m pytest -rs {posargs} + cov: coverage run -m pytest -rs {posargs} lint: python -m flake8 {posargs} {[_lint]files} [testenv:docs]