Merge pull request #749 from neo4j-contrib/rc/5.1.2 #11
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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: [ "master", "rc/**" ] | |
pull_request: | |
branches: [ "master", "rc/**" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.11", "3.10", "3.9", "3.8", "3.7"] | |
neo4j-version: ["community", "enterprise", "5.5-enterprise", "4.4-enterprise", "4.4-community"] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: 'pip' | |
- name: Creating Neo4j Container | |
run: | | |
chmod +x ./docker-scripts/docker-neo4j.sh | |
sh ./docker-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 | |
env: | |
AURA_TEST_DB_USER: ${{ secrets.AURA_TEST_DB_USER }} | |
AURA_TEST_DB_PASSWORD: ${{ secrets.AURA_TEST_DB_PASSWORD }} | |
AURA_TEST_DB_HOSTNAME: ${{ secrets.AURA_TEST_DB_HOSTNAME }} | |
run: | | |
pytest --cov=neomodel --cov-report=html:coverage_report | |
- name: Upload coverage reports to Codecov | |
uses: codecov/codecov-action@v3 |