Skip to content

Commit

Permalink
tests: default interpreted proto in tests (#10079)
Browse files Browse the repository at this point in the history
## Problem

We aren't using the sharded interpreted wal receiver protocol in all
tests.

## Summary of changes

Default to the interpreted protocol.
  • Loading branch information
VladLazar authored Dec 12, 2024
1 parent 0bd8eca commit ec0ce06
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion test_runner/fixtures/neon_fixtures.py
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,10 @@ def __init__(

self.pageserver_virtual_file_io_mode = pageserver_virtual_file_io_mode

self.pageserver_wal_receiver_protocol = pageserver_wal_receiver_protocol
if pageserver_wal_receiver_protocol is not None:
self.pageserver_wal_receiver_protocol = pageserver_wal_receiver_protocol
else:
self.pageserver_wal_receiver_protocol = PageserverWalReceiverProtocol.INTERPRETED

assert test_name.startswith(
"test_"
Expand Down

1 comment on commit ec0ce06

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

7890 tests run: 7548 passed, 1 failed, 341 skipped (full report)


Failures on Postgres 16

  • test_download_churn[github-actions-selfhosted-100-tokio-epoll-uring-30]: release-x86-64
# Run all failed tests locally:
scripts/pytest -vv -n $(nproc) -k "test_download_churn[release-pg16-github-actions-selfhosted-100-tokio-epoll-uring-30]"
Flaky tests (1)

Postgres 17

Code coverage* (full report)

  • functions: 31.3% (8381 of 26760 functions)
  • lines: 47.7% (65932 of 138291 lines)

* collected from Rust tests only


The comment gets automatically updated with the latest test results
ec0ce06 at 2024-12-12T13:51:09.673Z :recycle:

Please sign in to comment.