-
Notifications
You must be signed in to change notification settings - Fork 61
74 lines (67 loc) · 1.8 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
name: Tests
on:
workflow_dispatch:
push:
paths:
- 'papermerge/**'
- 'tests/**'
- 'ui/**'
- 'pyproject.toml'
- '.github/workflows/tests.yml'
jobs:
check-pep8-compliance:
runs-on: ubuntu-20.04
services:
redis:
image: redis
options: >-
--health-cmd "redis-cli ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install dependencies and validate PEP8 compliance
run: |
python -m pip install --upgrade pip
pip install poetry==1.8
poetry install --with dev,test && poetry run task lint
backend_core_tests:
needs: check-pep8-compliance
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install redis
run: sudo apt-get install -y redis-tools redis-server
- name: Install tesseract debian packages
run: |
sudo apt-get install tesseract-ocr tesseract-ocr-deu imagemagick
- name: Install python dependencies
run: |
python -m pip install --upgrade pip
pip install poetry==1.8
poetry install --with dev,test && poetry run task test
env:
PYTHONPATH: .
PAPERMERGE__MAIN__API_PREFIX: ''
frontend_tests:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./ui
steps:
- uses: actions/checkout@v4
- name: Install modules
run: |
npm i
- name: Run tests
run: |
npm test