Skip to content

#119: Refactored pkg_resources usage to importlib.resources #983

#119: Refactored pkg_resources usage to importlib.resources

#119: Refactored pkg_resources usage to importlib.resources #983

name: Test Python Versions with all tests
on:
push:
branches:
- main
pull_request:
jobs:
test-python-version-all-tests:
strategy:
fail-fast: false
matrix:
exasol_version:
- "default"
python_version:
- "3.9"
- "3.10"
name: Run tests with Python ${{ matrix.python_version }} and Exasol ${{ matrix.exasol_version }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/prepare_poetry_env
with:
python_version: "${{ matrix.python_version }}"
- name: Run all tests
run: poetry run nox -s "run-tests(db_version='${{ matrix.exasol_version }}')"