-
Notifications
You must be signed in to change notification settings - Fork 98
39 lines (35 loc) · 1.14 KB
/
tests.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: tests
on:
push:
tags:
schedule:
- cron: '0 8 * * *'
jobs:
build:
runs-on: ubuntu-latest
#strategy:
# matrix:
# python-version: [3.7, 3.8, 3.9, '3.10']
steps:
- uses: actions/checkout@v3
#- name: Set up Python ${{ matrix.python-version }}
#uses: actions/setup-python@v2
# with:
# python-version: ${{ matrix.python-version }}
- name: Install system dependencies with apt-get
run: |
sudo apt-get update && sudo apt-get install -y ffmpeg
- name: Install python dependencies with pip
run: |
python -m pip install --upgrade pip
pip install poetry yt-dlp
poetry install
- name: Lint with flake8
run: |
poetry run flake8 --count --select=E9,F63,F7,F82 --show-source --statistics
- name: Test with pytest
run: |
poetry run deezer-downloader --show-config-template > settings.ini
sed -i 's/^cookie_arl.*/cookie_arl = ${{ secrets.DEEZER_COOKIE_ARL }}/' settings.ini
sed -i "s@^command.*@command = $(which yt-dlp)@" settings.ini
DEEZER_DOWNLOADER_CONFIG_FILE=settings.ini poetry run pytest -v -s