mirror of
https://github.com/neondatabase/neon.git
synced 2025-12-23 06:09:59 +00:00
The current test was just SQL files only, but we also want to test a remote extension which includes a loadable library. With both extensions we should cover a larger portion of compute_ctl's remote extension code paths. Fixes: https://github.com/neondatabase/neon/issues/11146 Signed-off-by: Tristan Partin <tristan@neon.tech>
21 lines
518 B
Python
21 lines
518 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",
|
|
"fixtures.pg_config",
|
|
)
|