Skip to content

Commit

Permalink
Fix allure report creation on periodic pg_regress testing (#10171)
Browse files Browse the repository at this point in the history
## Problem
The allure report finishes with the error `HttpError: Resource not
accessible by integration` while running the `pg_regress` test against a
cloud staging project due to a lack of permissions.
## Summary of changes
The permissions are added.
  • Loading branch information
a-masterov authored Dec 17, 2024
1 parent 2ee6bc5 commit c52514a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/cloud-regress.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ concurrency:

permissions:
id-token: write # aws-actions/configure-aws-credentials
statuses: write
contents: write

jobs:
regress:
Expand Down

1 comment on commit c52514a

@github-actions
Copy link

Choose a reason for hiding this comment

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

6600 tests run: 6310 passed, 1 failed, 289 skipped (full report)


Failures on Postgres 16

  • test_storage_controller_many_tenants[github-actions-selfhosted]: release-x86-64
# Run all failed tests locally:
scripts/pytest -vv -n $(nproc) -k "test_storage_controller_many_tenants[release-pg16-github-actions-selfhosted]"
Flaky tests (6)

Postgres 17

Postgres 16

  • test_physical_replication_config_mismatch_max_locks_per_transaction: release-arm64

Postgres 15

  • test_pgdata_import_smoke[None-1024-RelBlockSize.MULTIPLE_RELATION_SEGMENTS]: release-arm64

Postgres 14

  • test_pgdata_import_smoke[None-1024-RelBlockSize.MULTIPLE_RELATION_SEGMENTS]: release-arm64
  • test_physical_replication_config_mismatch_max_locks_per_transaction: release-x86-64

Code coverage* (full report)

  • functions: 31.3% (8394 of 26820 functions)
  • lines: 48.0% (66632 of 138916 lines)

* collected from Rust tests only


The comment gets automatically updated with the latest test results
c52514a at 2024-12-17T23:20:52.538Z :recycle:

Please sign in to comment.