summaryrefslogtreecommitdiff
path: root/README.unittests.rst
diff options
context:
space:
mode:
authorFederico Caselli <cfederico87@gmail.com>2023-01-18 22:28:34 +0100
committerFederico Caselli <cfederico87@gmail.com>2023-01-18 22:28:34 +0100
commit6104e1e0321af1fb2f043006e31971a0bd28a8c0 (patch)
tree95a7a2071433d98e11bc2865ab7555d24608b52b /README.unittests.rst
parentf2e8ce8853789064e2522f89e14d9bcd1c961091 (diff)
downloadsqlalchemy-6104e1e0321af1fb2f043006e31971a0bd28a8c0.tar.gz
fix typo, add missing command to unittest pg docker example
Change-Id: Ic640ccf7459c39cb4f6ab8dcfb3efed1a1dbb55f
Diffstat (limited to 'README.unittests.rst')
-rw-r--r--README.unittests.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.unittests.rst b/README.unittests.rst
index 23f7292cc..9d63d238f 100644
--- a/README.unittests.rst
+++ b/README.unittests.rst
@@ -250,7 +250,7 @@ intended for production use!
# configure the database
sleep 10
- docker exec -ti postgres psql -U scott -c 'CREATE SCHEMA test_schema; CREATE SCHEMA test_schema_2;' test
+ docker exec -ti postgres psql -U scott -c 'CREATE SCHEMA test_schema; CREATE SCHEMA test_schema_2;CREATE EXTENSION hstore;' test
# this last command is optional
docker exec -ti postgres sed -i 's/#max_prepared_transactions = 0/max_prepared_transactions = 10/g' /var/lib/postgresql/data/postgresql.conf