-
Notifications
You must be signed in to change notification settings - Fork 0
66 lines (57 loc) · 1.84 KB
/
parallel-ci.yml
File metadata and controls
66 lines (57 loc) · 1.84 KB
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
name: Parallel Testing
on:
push:
branches: [ main, develop ]
paths:
- 'src/**'
- 'tests/**'
pull_request:
branches: [ main, develop ]
paths:
- 'src/**'
- 'tests/**'
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.11]
test-type: [unit, integration, performance]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
cd backend
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pytest pytest-asyncio pytest-xdist
- name: Run tests
run: |
cd backend
export TESTING=True
export DATABASE_URL=sqlite+aiosqlite:///:memory:
if [ "${{ matrix.test-type }}" == "unit" ]; then
python -m pytest tests/unit/ -v -n auto --cov=src/backend --cov-report=xml:coverage.xml
elif [ "${{ matrix.test-type }}" == "integration" ]; then
python -m pytest tests/integration/ -v -n auto --cov=src/backend --cov-report=xml:coverage.xml
else
python -m pytest tests/performance/ -v -n auto --benchmark-autosave --benchmark-json=benchmark.json
fi
- name: Upload coverage
if: ${{ matrix.test-type == 'unit' || matrix.test-type == 'integration' }}
uses: codecov/codecov-action@v3
with:
file: backend/coverage.xml
name: ${{ matrix.test-type }}
flags: ${{ matrix.test-type }}
fail_ci_if_error: true
- name: Upload benchmark results
if: ${{ matrix.test-type == 'performance' }}
uses: actions/upload-artifact@v3
with:
name: benchmark-results
path: backend/benchmark.json