File: conftest.py

package info (click to toggle)
sqlite-fts4 1.0.3-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 124 kB
  • sloc: python: 438; makefile: 7
file content (7 lines) | stat: -rw-r--r-- 182 bytes parent folder | download
1
2
3
4
5
6
7
import sqlite3


def pytest_report_header(config):
    return "SQLite version: {}".format(
        sqlite3.connect(":memory:").execute("select sqlite_version()").fetchone()[0]
    )