#432: Fixed localhost ip address #1049
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
name: Test Python Versions with all tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
test-python-version-all-tests: | |
name: Run Tests with Python ${{ matrix.python_version }} and Exasol ${{ matrix.exasol_version }} | |
strategy: | |
fail-fast: false | |
matrix: | |
exasol_version: | |
- "default" | |
python_version: | |
- "3.9" | |
- "3.10" | |
runs-on: ubuntu-latest | |
steps: | |
- name: SCM Checkout | |
uses: actions/checkout@v4 | |
- name: Allow Unprivileged User Namespaces | |
run: sudo sysctl -w kernel.apparmor_restrict_unprivileged_userns=0 | |
- name: Setup Python & Poetry Environment | |
uses: exasol/python-toolbox/.github/actions/[email protected] | |
with: | |
python-version: ${{ matrix.python_version }} | |
poetry-version: '1.8.2' | |
- name: Run all tests | |
run: poetry run nox -s "run-tests(db_version='${{ matrix.exasol_version }}')" |