mirror of
https://github.com/neondatabase/neon.git
synced 2025-12-27 08:09:58 +00:00
`test_tenant_relocation` ends up starting a temporary postgres instance with a fixed port. the change makes the port configurable at scripts/export_import_between_pageservers.py and uses that in test_tenant_relocation.
12 lines
289 B
Bash
Executable File
12 lines
289 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -euox pipefail
|
|
|
|
# Runs all formatting tools to ensure the project is up to date
|
|
echo 'Reformatting Rust code'
|
|
cargo fmt
|
|
echo 'Reformatting Python code'
|
|
poetry run isort test_runner scripts
|
|
poetry run flake8 test_runner scripts
|
|
poetry run black test_runner scripts
|