summaryrefslogtreecommitdiff
path: root/README.unittests.rst
diff options
context:
space:
mode:
authorCaselIT <cfederico87@gmail.com>2021-04-18 11:41:04 +0200
committerCaselIT <cfederico87@gmail.com>2021-06-22 23:05:35 +0200
commitb511670231e99c5278d58e789f9efb7855488b41 (patch)
tree231ab1213581dc6db708f478d2d54d48dcd16518 /README.unittests.rst
parentb1e5a23c0f53482dd06b013ce8a9453dd0e5eb5d (diff)
downloadalembic-b511670231e99c5278d58e789f9efb7855488b41.tar.gz
Drop compatibility with python 2.7.
Now alembic supports only python from version 3.6. Change-Id: Iccf124c2d74af801d90a16c9003cdad318768625
Diffstat (limited to 'README.unittests.rst')
-rw-r--r--README.unittests.rst10
1 files changed, 5 insertions, 5 deletions
diff --git a/README.unittests.rst b/README.unittests.rst
index 80c1b6a..b741d58 100644
--- a/README.unittests.rst
+++ b/README.unittests.rst
@@ -23,20 +23,20 @@ Advanced Tox Options
For more elaborate CI-style test running, the tox script provided will
run against various Python / database targets. For a basic run against
-Python 3.8 using an in-memory SQLite database::
+Python 3.9 using an in-memory SQLite database::
- tox -e py38-sqlite
+ tox -e py39-sqlite
The tox runner contains a series of target combinations that can run
against various combinations of databases. The test suite can be
run against SQLite with "backend" tests also running against a PostgreSQL
database::
- tox -e py38-sqlite-postgresql
+ tox -e py39-sqlite-postgresql
Or to run just "backend" tests against a MySQL database::
- tox -e py38-mysql-backendonly
+ tox -e py39-mysql-backendonly
Running against backends other than SQLite requires that a database of that
vendor be available at a specific URL. See "Setting Up Databases" below
@@ -131,7 +131,7 @@ with the tox runner also::
[db]
postgresql=postgresql://username:pass@hostname/dbname
-Now when we run ``tox -e py27-postgresql``, it will use our custom URL instead
+Now when we run ``tox -e py39-postgresql``, it will use our custom URL instead
of the fixed one in setup.cfg.
Database Configuration