-
Notifications
You must be signed in to change notification settings - Fork 0
49 lines (44 loc) · 1.16 KB
/
ci.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
name: django-woah CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 2
matrix:
python-version: [3.11, 3.12]
services:
mysql:
image: mysql:8.0
env:
MYSQL_DATABASE: test_db
MYSQL_ROOT_PASSWORD: secret
ports:
- 3306:3306
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -r exported_requirements.txt
pip install pymysql==1.1.0 cryptography==42.0.2
- name: Run Tests
env:
DB_ENGINE: django.db.backends.mysql
DB_NAME: test_db
DB_USER: root
DB_PASSWORD: secret
DB_HOST: 127.0.0.1
DB_PORT: 3306
run: |
cd django_woah/ && pytest -vv
cd ..
PYTHONPATH=. DJANGO_SETTINGS_MODULE=issue_tracker.settings pytest -vv --no-migrations examples/issue_tracker