Skip to content

Commit

Permalink
fix(pageserver): ensure tenant harness has different names (#8205)
Browse files Browse the repository at this point in the history
rename the tenant test harness name

Signed-off-by: Alex Chi Z <chi@neon.tech>
  • Loading branch information
skyzh committed Jun 28, 2024
1 parent b8bbaaf commit bc70491
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pageserver/src/tenant.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6264,7 +6264,7 @@ mod tests {

#[tokio::test]
async fn test_vectored_missing_metadata_key_reads() -> anyhow::Result<()> {
let harness = TenantHarness::create("test_vectored_missing_data_key_reads")?;
let harness = TenantHarness::create("test_vectored_missing_metadata_key_reads")?;
let (tenant, ctx) = harness.load().await;

let base_key = Key::from_hex("620000000033333333444444445500000000").unwrap();
Expand Down

1 comment on commit bc70491

@github-actions
Copy link

Choose a reason for hiding this comment

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

3028 tests run: 2899 passed, 4 failed, 125 skipped (full report)


Failures on Postgres 14

  • test_heavy_write_workload[neon_on-github-actions-selfhosted-10-5-5]: release
  • test_pgbench_intensive_init_workload[neon_off-github-actions-selfhosted-1000]: release
  • test_sharding_autosplit[github-actions-selfhosted]: release
  • test_storage_controller_many_tenants[github-actions-selfhosted]: release
# Run all failed tests locally:
scripts/pytest -vv -n $(nproc) -k "test_heavy_write_workload[neon_on-release-pg14-github-actions-selfhosted-10-5-5] or test_pgbench_intensive_init_workload[neon_off-release-pg14-github-actions-selfhosted-1000] or test_sharding_autosplit[release-pg14-github-actions-selfhosted] or test_storage_controller_many_tenants[release-pg14-github-actions-selfhosted]"

Code coverage* (full report)

  • functions: 32.7% (6906 of 21123 functions)
  • lines: 50.1% (54142 of 108144 lines)

* collected from Rust tests only


The comment gets automatically updated with the latest test results
bc70491 at 2024-06-28T20:37:39.565Z :recycle:

Please sign in to comment.