Skip to content

Bump down to Django 4.2.8 for LTS #64

Bump down to Django 4.2.8 for LTS

Bump down to Django 4.2.8 for LTS #64

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Integration tests
on:
push:
branches: [ "rc/**" ]
pull_request:
branches: [ "master", "rc/**" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.12", "3.11", "3.10", "3.9", "3.8"]
neo4j-version: ["community", "4.4-community"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Creating Neo4j Container
run: |
chmod +x ./scripts/docker-neo4j.sh
sh ./scripts/docker-neo4j.sh ${{ matrix.neo4j-version }}
sleep 30s
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e '.[dev]'
- name: Test with pytest
run: |
export DJANGO_SETTINGS_MODULE=settings
tests/manage.py install_labels
tests/manage.py migrate
pytest