Skip to content

Fix compatibility with urllib3<2 and add CI actions to improve dependency checks #1876

Fix compatibility with urllib3<2 and add CI actions to improve dependency checks

Fix compatibility with urllib3<2 and add CI actions to improve dependency checks #1876

Workflow file for this run

name: Integration Tests
on:
push:
branches:
- main
pull_request:
jobs:
run-e2e-tests:
runs-on: ubuntu-latest
environment: azure-prod
strategy:
matrix:
dependency-version: ["default", "min"]
name: "E2E Tests (${{ matrix.dependency-version }} deps)"
env:
DATABRICKS_SERVER_HOSTNAME: ${{ secrets.DATABRICKS_HOST }}
DATABRICKS_HTTP_PATH: ${{ secrets.TEST_PECO_WAREHOUSE_HTTP_PATH }}
DATABRICKS_TOKEN: ${{ secrets.DATABRICKS_TOKEN }}
DATABRICKS_CATALOG: peco
DATABRICKS_USER: ${{ secrets.TEST_PECO_SP_ID }}
steps:
#----------------------------------------------
# check-out repo and set-up python
#----------------------------------------------
- name: Check out repository
uses: actions/checkout@v4
- name: Set up python
id: setup-python
uses: actions/setup-python@v5
with:
python-version: "3.10"
#----------------------------------------------
# ----- install & configure poetry -----
#----------------------------------------------
- name: Install Poetry
uses: snok/install-poetry@v1
with:
virtualenvs-create: true
virtualenvs-in-project: true
installer-parallel: true
#----------------------------------------------
# load cached venv if cache exists
#----------------------------------------------
- name: Load cached venv
id: cached-poetry-dependencies
uses: actions/cache@v4
with:
path: .venv
key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ github.event.repository.name }}-${{ hashFiles('**/poetry.lock') }}
#----------------------------------------------
# install dependencies if cache does not exist
#----------------------------------------------
- name: Install dependencies
run: poetry install --no-interaction --all-extras
#----------------------------------------------
# override with custom dependency versions
#----------------------------------------------
- name: Install Python tools for custom versions
if: matrix.dependency-version != 'default'
run: poetry run pip install toml packaging
- name: Generate requirements file for e2e
if: matrix.dependency-version != 'default'
run: |
poetry run python scripts/dependency_manager.py ${{ matrix.dependency-version }} --output requirements-${{ matrix.dependency-version }}-e2e.txt
echo "Generated requirements for ${{ matrix.dependency-version }} versions (E2E):"
cat requirements-${{ matrix.dependency-version }}-e2e.txt
- name: Override with custom dependency versions
if: matrix.dependency-version != 'default'
run: poetry run pip install -r requirements-${{ matrix.dependency-version }}-e2e.txt
#----------------------------------------------
# run test suite
#----------------------------------------------
- name: Show installed versions
run: |
echo "=== E2E Dependency Version: ${{ matrix.dependency-version }} ==="
poetry run pip list
- name: Run e2e tests
run: poetry run python -m pytest tests/e2e