fix: handle concurrent table creation race in SQLite (#151)

This commit is contained in:
Alexander Whitestone
2026-03-08 13:27:11 -04:00
committed by GitHub
parent ae3bb1cc21
commit 8dbce25183
5 changed files with 44 additions and 8 deletions

View File

@@ -2,9 +2,9 @@ name: Tests
on:
push:
branches: ["**"]
branches: [main]
pull_request:
branches: ["**"]
branches: [main]
jobs:
lint:
@@ -17,7 +17,7 @@ jobs:
python-version: "3.11"
- name: Install linters
run: pip install black==23.12.1 isort==5.13.2 bandit==1.7.5
run: pip install black==23.12.1 isort==5.13.2 bandit==1.8.0
- name: Check formatting (black)
run: black --check --line-length 100 src/ tests/