Skip to content

Fix test assertions broken by as_of_timestamp change to pool.created_at #19165

Fix test assertions broken by as_of_timestamp change to pool.created_at

Fix test assertions broken by as_of_timestamp change to pool.created_at #19165

Workflow file for this run

name: Lint
on: [push, pull_request]
env:
PYTHON_VERSION: "3.12"
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v6
- name: Install uv
uses: astral-sh/setup-uv@v8.1.0
with:
enable-cache: true
cache-dependency-glob: uv.lock
python-version: ${{ env.PYTHON_VERSION }}
activate-environment: true
- name: Install Pre-commit
run: uv sync --frozen --only-group ci
- name: Restore pre-commit cache
uses: actions/cache@v5
with:
path: ~/.cache/pre-commit
key: pre-commit-${{ runner.os }}-py${{ env.PYTHON_VERSION }}-${{ hashFiles('.pre-commit-config.yaml') }}
restore-keys: pre-commit-${{ runner.os }}-py${{ env.PYTHON_VERSION }}
- name: Lint
run: pre-commit run --all-files --show-diff-on-failure