✨ Add support for Apache Pinot via pinotdb driver #319
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-oracle | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: [ '3.9', '3.10', '3.11', '3.12', '3.13' ] | |
services: | |
oracle: | |
image: gvenzl/oracle-free:slim | |
ports: | |
- 1522:1521 | |
env: | |
ORACLE_RANDOM_PASSWORD: "yes" | |
APP_USER: "pydapper" | |
APP_USER_PASSWORD: "pydapper" | |
ORACLE_DATABASE: "pydapper" | |
options: >- # oracle has a longer startup so give the healthcheck more retries | |
--health-cmd healthcheck.sh | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 10 | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- name: set up python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: install poetry | |
env: | |
POETRY_VERSION: "2.0.1" | |
run: | | |
curl -sSL https://install.python-poetry.org | python - | |
poetry config virtualenvs.create false | |
- name: cache poetry.lock dependencies | |
id: cache-poetry-deps | |
uses: actions/cache@v4 | |
with: | |
path: ${{ env.pythonLocation }} | |
key: ${{ runner.os }}-${{ env.pythonLocation }}-${{ hashFiles('poetry.lock') }}-test-oracle | |
- name: install dependencies | |
if: steps.cache-poetry-deps.outputs.cache-hit != 'true' | |
run: poetry install -E oracledb | |
- name: test | |
env: | |
PYTHON_VERSION: ${{ matrix.python-version }} | |
run: | | |
poetry run pytest -m "oracle" --cov=. --cov-branch -v --durations=25 --cov-report=xml | |
- uses: codecov/codecov-action@v5 | |
with: | |
fail_ci_if_error: true | |
flags: ${{ matrix.python-version}}-oracle | |
token: ${{ secrets.CODECOV_TOKEN }} |