mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-07 13:32:57 +00:00
We did not have any tests on fast_import binary yet. In this PR I have introduced: - `FastImport` class and tools for testing in python - basic test that runs fast import against vanilla postgres and checks that data is there Should be merged after https://github.com/neondatabase/neon/pull/10251
20 lines
492 B
Python
20 lines
492 B
Python
from __future__ import annotations
|
|
|
|
pytest_plugins = (
|
|
"fixtures.pg_version",
|
|
"fixtures.parametrize",
|
|
"fixtures.h2server",
|
|
"fixtures.httpserver",
|
|
"fixtures.compute_reconfigure",
|
|
"fixtures.storage_controller_proxy",
|
|
"fixtures.paths",
|
|
"fixtures.compute_migrations",
|
|
"fixtures.neon_fixtures",
|
|
"fixtures.benchmark_fixture",
|
|
"fixtures.pg_stats",
|
|
"fixtures.compare_fixtures",
|
|
"fixtures.slow",
|
|
"fixtures.reruns",
|
|
"fixtures.fast_import",
|
|
)
|