Skip to content

Change object_id to CharField because of MySQL's length requirement #13

Change object_id to CharField because of MySQL's length requirement

Change object_id to CharField because of MySQL's length requirement #13

Workflow file for this run

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