Skip to content

Commit

Permalink
test: disable test_superuser on pg15 (#6972)
Browse files Browse the repository at this point in the history
ref #6969

Signed-off-by: Alex Chi Z <chi@neon.tech>
  • Loading branch information
skyzh authored Feb 29, 2024
1 parent 5984eda commit 76ab57f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion test_runner/regress/test_neon_superuser.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
from fixtures.log_helper import log
from fixtures.neon_fixtures import NeonEnv
from fixtures.pg_version import PgVersion
from fixtures.pg_version import PgVersion, skip_on_postgres
from fixtures.utils import wait_until


@skip_on_postgres(
PgVersion.V15, reason="skip on pg15 due to https://github.com/neondatabase/neon/issues/6969"
)
def test_neon_superuser(neon_simple_env: NeonEnv, pg_version: PgVersion):
env = neon_simple_env
env.neon_cli.create_branch("test_neon_superuser_publisher", "empty")
Expand Down

1 comment on commit 76ab57f

@github-actions
Copy link

Choose a reason for hiding this comment

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

2525 tests run: 2390 passed, 0 failed, 135 skipped (full report)


Code coverage* (full report)

  • functions: 28.6% (6887 of 24065 functions)
  • lines: 47.1% (42127 of 89464 lines)

* collected from Rust tests only


The comment gets automatically updated with the latest test results
76ab57f at 2024-02-29T19:47:47.810Z :recycle:

Please sign in to comment.