Skip to content

Commit 7b64870

Browse files
committed
Fix RST syntax error in the README
1 parent 95e6237 commit 7b64870

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

README.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ fixture is known to work all the way back to v11.
8282
If you are already running inside Docker you will need to start the
8383
container with `--network-"host"` so that 127.0.0.1 routes to the started
8484
PG containers. You will need to do up to two extra things:
85+
8586
1. Bind mount /var/run/docker.sock to the container so docker clients
8687
can create sibling containers on the host.
8788
2. If you cannot use host networking, supply the IP address of the

pyproject.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,9 @@ scripts.debug = ["python -m testtools.run discover -v -s dbtesttools/tests -t {r
7575
scripts.py3 = ["stestr run --concurrency 2 -t dbtesttools/tests --top-dir {root} {args}"]
7676
scripts.formatcheck = [
7777
"ruff format --check dbtesttools",
78-
"ruff check --select I --show-fixes dbtesttools"
78+
"ruff check --select I --show-fixes dbtesttools",
79+
"hatch build",
80+
"twine check dist/*",
7981
]
8082
scripts.format = [
8183
"ruff check --select I --fix-only --show-fixes dbtesttools",

0 commit comments

Comments
 (0)