Skip to content

Commit

Permalink
update extension version in test_neon_extension
Browse files Browse the repository at this point in the history
  • Loading branch information
lubennikovaav committed Nov 23, 2023
1 parent f5dfa6f commit 582a427
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test_runner/regress/test_neon_extension.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def test_neon_extension(neon_env_builder: NeonEnvBuilder):
# IMPORTANT:
# If the version has changed, the test should be updated.
# Ensure that the default version is also updated in the neon.control file
assert cur.fetchone() == ("1.0",)
assert cur.fetchone() == ("1.1",)

# create test database
cur.execute("CREATE DATABASE foodb")
Expand All @@ -35,4 +35,4 @@ def test_neon_extension(neon_env_builder: NeonEnvBuilder):
with closing(endpoint_main.connect(dbname="foodb")) as conn:
with conn.cursor() as cur:
cur.execute("SELECT extversion from pg_extension where extname='neon'")
assert cur.fetchone() == ("1.0",)
assert cur.fetchone() == ("1.1",)

1 comment on commit 582a427

@github-actions
Copy link

Choose a reason for hiding this comment

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

2486 tests run: 2351 passed, 1 failed, 134 skipped (full report)


Failures on Postgres 14

  • test_ondemand_download_timetravel[local_fs]: debug
# Run all failed tests locally:
scripts/pytest -vv -n $(nproc) -k "test_ondemand_download_timetravel[debug-pg14-local_fs]"
Flaky tests (7)

Postgres 16

  • test_crafted_wal_end[last_wal_record_xlog_switch_ends_on_page_boundary]: release
  • test_timeline_deletion_with_files_stuck_in_upload_queue: release

Postgres 15

  • test_crafted_wal_end[wal_record_crossing_segment_followed_by_small_one]: debug
  • test_pageserver_restarts_under_worload: debug
  • test_timeline_deletion_with_files_stuck_in_upload_queue: release

Postgres 14

  • test_ondemand_download_timetravel[mock_s3]: debug
  • test_ondemand_download_timetravel[real_s3]: debug

Test coverage report is not available

The comment gets automatically updated with the latest test results
582a427 at 2023-11-23T19:36:33.690Z :recycle:

Please sign in to comment.