Skip to content

Tests

Tests #719

Workflow file for this run

name: Tests
on:
push:
branches:
- main
pull_request:
schedule:
- cron: "0 7 * * 1,3"
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
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 basic dependencies
run: |
python -m pip install --upgrade pip
pip install wheel
pip install -e .[dev]
- name: Mypy strict without optional dependencies
run: |
mypy --strict tests/main/clients/*/expected_client
mypy --strict tests/main/graphql_schemas/*/expected_schema.py
mypy --strict ariadne_codegen/client_generators/dependencies
- name: Install optional dependencies
run: |
pip install -e .[subscriptions,opentelemetry,dev]
- name: Pytest
run: |
pytest
- name: Linters
run: |
pylint ariadne_codegen tests
mypy ariadne_codegen --ignore-missing-imports
black --check .
isort . --check-only
- name: Mypy strict with all dependencies
run: |
mypy --strict tests/main/clients/*/expected_client
mypy --strict tests/main/graphql_schemas/*/expected_schema.py
mypy --strict ariadne_codegen/client_generators/dependencies