Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix RST syntax error in the README #11

Merged
merged 1 commit into from
Jul 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ fixture is known to work all the way back to v11.
If you are already running inside Docker you will need to start the
container with `--network-"host"` so that 127.0.0.1 routes to the started
PG containers. You will need to do up to two extra things:

1. Bind mount /var/run/docker.sock to the container so docker clients
can create sibling containers on the host.
2. If you cannot use host networking, supply the IP address of the
Expand Down
4 changes: 3 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,9 @@ scripts.debug = ["python -m testtools.run discover -v -s dbtesttools/tests -t {r
scripts.py3 = ["stestr run --concurrency 2 -t dbtesttools/tests --top-dir {root} {args}"]
scripts.formatcheck = [
"ruff format --check dbtesttools",
"ruff check --select I --show-fixes dbtesttools"
"ruff check --select I --show-fixes dbtesttools",
"hatch build",
"twine check dist/*",
]
scripts.format = [
"ruff check --select I --fix-only --show-fixes dbtesttools",
Expand Down
Loading