Merge pull request #3895 from wisp3rwind/ci_reduce_skips

ci: install ffmpeg for replaygain tests; show skipped tests
This commit is contained in:
Benedikt 2021-03-23 09:00:26 +01:00 committed by GitHub
commit 8648e9b518
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 2 deletions

View file

@ -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: |

View file

@ -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]