mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-09 14:32:57 +00:00
12 lines
265 B
Bash
Executable File
12 lines
265 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
|
|
poetry run flake8 test_runner
|
|
poetry run black test_runner
|