Skip to content

Commit

Permalink
Update README.testing.rst
Browse files Browse the repository at this point in the history
  • Loading branch information
m32 authored Oct 28, 2023
1 parent db5a44e commit 75cfae0
Showing 1 changed file with 8 additions and 12 deletions.
20 changes: 8 additions & 12 deletions README.testing.rst
Original file line number Diff line number Diff line change
@@ -1,19 +1,15 @@
Testing is done using pytest. After installing pytest via ``pip``, a typical run of the SQLAlchemy test suite
can be performed by running::

python3 -m pytest
or, for more verbose output::
python3 -m pytest -v
can be performed by running:
python3 -m pytest
for more verbose output:
python3 -m pytest -v
or:
python3 -m pytest --log-info=sqlalchemy.engine --log-debug=pytds --log-debug=sqlalchemy.engine
python3 -m pytest --log-info=sqlalchemy.engine --log-debug=pytds --log-debug=sqlalchemy.engine

results:
64 failed
686 passed
767 skipped
1 warning
results: 64 failed, 686 passed, 767 skipped, 1 warning

IMPORTANT:

1. Couple of tests require the testing database to contain a User-defined Schema named ``test_schema``
Create it before running test with python3 createdb.py
Create it before running test with:
python3 createdb.py

0 comments on commit 75cfae0

Please sign in to comment.