]> git.ipfire.org Git - thirdparty/psycopg.git/commitdiff
docs: drop tox from readme
authorDaniele Varrazzo <daniele.varrazzo@gmail.com>
Wed, 7 Dec 2022 22:28:08 +0000 (22:28 +0000)
committerDaniele Varrazzo <daniele.varrazzo@gmail.com>
Thu, 8 Dec 2022 18:21:21 +0000 (18:21 +0000)
I don't really use in for development, so it's better not suggesting it.

README.rst

index 68c93a63433eeb865f81b4aa6765b644fcd11957..50934d83d2c6af78c0a57ecb2d87f43c2a01903d 100644 (file)
@@ -66,21 +66,10 @@ requirements::
 Please add ``--config-settings editable_mode=strict`` to the ``pip install
 -e`` above if you experience `editable mode broken`__.
 
-.. __: https://github.com/pypa/setuptools/issues/3557?
+.. __: https://github.com/pypa/setuptools/issues/3557
 
-Now hack away! You can use tox to validate the code::
-
-    pip install "tox < 4"
-    tox -p4
-
-and to run the tests::
+Now hack away! You can run the tests using::
 
     psql -c 'create database psycopg_test'
     export PSYCOPG_TEST_DSN="dbname=psycopg_test"
-    tox -c psycopg -s
-    tox -c psycopg_c -s
-
-Please look at the commands definitions in the ``tox.ini`` files if you want
-to run some of them interactively: the dependency should be already in your
-virtualenv. Feel free to adapt these recipes if you follow a different
-development pattern.
+    pytest