From b0d4892bd2445f925bf7b0c3a6d2036c87573dce Mon Sep 17 00:00:00 2001 From: burnettk Date: Sat, 12 Nov 2022 23:24:09 -0500 Subject: [PATCH] uncomment --- .github/workflows/backend_tests.yml | 102 ++++++++++++++-------------- 1 file changed, 51 insertions(+), 51 deletions(-) diff --git a/.github/workflows/backend_tests.yml b/.github/workflows/backend_tests.yml index 1ff024a0..ef70a5c3 100644 --- a/.github/workflows/backend_tests.yml +++ b/.github/workflows/backend_tests.yml @@ -16,63 +16,63 @@ jobs: fail-fast: false matrix: include: - # - { python: "3.11", os: "ubuntu-latest", session: "safety" } - # - { python: "3.11", os: "ubuntu-latest", session: "mypy" } - # - { python: "3.10", os: "ubuntu-latest", session: "mypy" } - # - { python: "3.9", os: "ubuntu-latest", session: "mypy" } + - { python: "3.11", os: "ubuntu-latest", session: "safety" } + - { python: "3.11", os: "ubuntu-latest", session: "mypy" } + - { python: "3.10", os: "ubuntu-latest", session: "mypy" } + - { python: "3.9", os: "ubuntu-latest", session: "mypy" } - { python: "3.11", os: "ubuntu-latest", session: "tests", database: "mysql", } - # - { - # python: "3.11", - # os: "ubuntu-latest", - # session: "tests", - # database: "postgres", - # } - # - { - # python: "3.11", - # os: "ubuntu-latest", - # session: "tests", - # database: "sqlite", - # } - # - { - # python: "3.10", - # os: "ubuntu-latest", - # session: "tests", - # database: "sqlite", - # } - # - { - # python: "3.9", - # os: "ubuntu-latest", - # session: "tests", - # database: "sqlite", - # } - # - { - # python: "3.10", - # os: "windows-latest", - # session: "tests", - # database: "sqlite", - # } - # - { - # python: "3.11", - # os: "macos-latest", - # session: "tests", - # database: "sqlite", - # } - # - { - # # typeguard 2.13.3 is broken with TypeDict in 3.11. - # # probably the next release fixes it. - # # https://github.com/agronholm/typeguard/issues/242 - # python: "3.11", - # os: "ubuntu-latest", - # session: "typeguard", - # database: "sqlite", - # } - # - { python: "3.11", os: "ubuntu-latest", session: "xdoctest" } - # - { python: "3.11", os: "ubuntu-latest", session: "docs-build" } + - { + python: "3.11", + os: "ubuntu-latest", + session: "tests", + database: "postgres", + } + - { + python: "3.11", + os: "ubuntu-latest", + session: "tests", + database: "sqlite", + } + - { + python: "3.10", + os: "ubuntu-latest", + session: "tests", + database: "sqlite", + } + - { + python: "3.9", + os: "ubuntu-latest", + session: "tests", + database: "sqlite", + } + - { + python: "3.10", + os: "windows-latest", + session: "tests", + database: "sqlite", + } + - { + python: "3.11", + os: "macos-latest", + session: "tests", + database: "sqlite", + } + - { + # typeguard 2.13.3 is broken with TypeDict in 3.11. + # probably the next release fixes it. + # https://github.com/agronholm/typeguard/issues/242 + python: "3.11", + os: "ubuntu-latest", + session: "typeguard", + database: "sqlite", + } + - { python: "3.11", os: "ubuntu-latest", session: "xdoctest" } + - { python: "3.11", os: "ubuntu-latest", session: "docs-build" } env: NOXSESSION: ${{ matrix.session }}