mirror of
https://github.com/neondatabase/neon.git
synced 2026-07-05 05:00:37 +00:00
drop the parametrization changes, not part of the feature PR
This commit is contained in:
@@ -48,8 +48,11 @@ def pytest_generate_tests(metafunc: Metafunc):
|
||||
|
||||
# A hacky way to parametrize tests only for `pageserver_virtual_file_io_engine=std-fs`
|
||||
# And do not change test name for default `pageserver_virtual_file_io_engine=tokio-epoll-uring` to keep tests statistics
|
||||
io_engine = os.getenv("PAGESERVER_VIRTUAL_FILE_IO_ENGINE", "std-fs")
|
||||
metafunc.parametrize("pageserver_virtual_file_io_engine", [io_engine])
|
||||
if (io_engine := os.getenv("PAGESERVER_VIRTUAL_FILE_IO_ENGINE", "")) not in (
|
||||
"",
|
||||
"tokio-epoll-uring",
|
||||
):
|
||||
metafunc.parametrize("pageserver_virtual_file_io_engine", [io_engine])
|
||||
|
||||
# For performance tests, parametrize also by platform
|
||||
if (
|
||||
|
||||
Reference in New Issue
Block a user