-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
8 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |