-
-
Notifications
You must be signed in to change notification settings - Fork 1
52 lines (47 loc) · 1.26 KB
/
tests.yml
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
40
41
42
43
44
45
46
47
48
49
50
51
52
name: artwork-indexer tests
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-22.04
services:
db:
image: metabrainz/musicbrainz-test-database:production
env:
POSTGRES_HOST_AUTH_METHOD: trust
ports:
- 5432:5432
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: "3.12"
cache: 'poetry'
- name: Add ~/.local/bin to PATH
run: echo "PATH=$HOME/.local/bin:$PATH" >> $GITHUB_ENV
- name: Install dependencies
run: |
python -m pip install --user 'pipx==1.7.1'
pipx install 'poetry==1.8.3'
poetry install
- name: Run flake8
run: |
poetry run flake8 *.py tests/*.py --count --show-source --statistics
- name: Run tests
run: |
cp config.tests.example.ini config.tests.ini
export PGHOST=localhost
export PGPORT=5432
export DROPDB_COMMAND='sudo -E -H -u postgres dropdb'
./run_tests.sh