summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorGord Thompson <gord@gordthompson.com>2020-04-16 16:06:36 -0600
committerGord Thompson <gord@gordthompson.com>2020-04-16 16:06:36 -0600
commit405fc9717048b0adc852a72da540048df7a8142a (patch)
tree95ad55122e2437d2d49f45ea9c5054f26fb48d79 /examples
parent2f617f56f2acdce00b88f746c403cf5ed66d4d27 (diff)
downloadsqlalchemy-405fc9717048b0adc852a72da540048df7a8142a.tar.gz
Rename py.test to pytest
Change-Id: I431e1ef41e26d490343204a75a5c097768749768
Diffstat (limited to 'examples')
-rw-r--r--examples/versioned_history/__init__.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/versioned_history/__init__.py b/examples/versioned_history/__init__.py
index 3deb7fcb2..53c9c498e 100644
--- a/examples/versioned_history/__init__.py
+++ b/examples/versioned_history/__init__.py
@@ -7,12 +7,12 @@ Compare to the :ref:`examples_versioned_rows` examples which write updates
as new rows in the same table, without using a separate history table.
Usage is illustrated via a unit test module ``test_versioning.py``, which can
-be run via ``py.test``::
+be run via ``pytest``::
- # assume SQLAlchemy is installed where py.test is
+ # assume SQLAlchemy is installed where pytest is
cd examples/versioned_history
- py.test test_versioning.py
+ pytest test_versioning.py
A fragment of example usage, using declarative::