mirror of
https://github.com/tcsenpai/swingmusic.git
synced 2025-07-28 13:41:42 +00:00

+ fix favorites endpoint returning items less than limit + add endpoint to remove get silence padding + add 'the ulitimate' and 'compilation' to compilation album filters + misc
20 lines
382 B
YAML
20 lines
382 B
YAML
os: linux
|
|
dist: bionic # focal
|
|
language: python
|
|
before_install:
|
|
- sudo apt-get update --fix-missing
|
|
install:
|
|
- sudo apt-get install -y ffmpeg libopus-dev python-scipy python3-scipy
|
|
python:
|
|
- "2.7"
|
|
- "3.6"
|
|
- "3.7"
|
|
- "3.8"
|
|
- "3.9"
|
|
- "pypy2"
|
|
- "pypy3"
|
|
script:
|
|
- python test/test.py
|
|
after_script:
|
|
- pip install pylama && python -m pylama -i W,E501 pydub/ || true
|