diff options
-rwxr-xr-x | sqla_nose.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sqla_nose.py b/sqla_nose.py index 8495ff107..c8ebaf34f 100755 --- a/sqla_nose.py +++ b/sqla_nose.py @@ -12,9 +12,10 @@ import nose import warnings warnings.warn( - "SQLAlchemy now includes py.test support which is expected to " - "supersede that of nose. Please see README.unittests.rst for updated " + "SQLAlchemy now includes py.test support which going forward should be " + "preferred to nose. Please see README.unittests.rst for updated " "testing information!") + from os import path for pth in ['./lib']: sys.path.insert(0, path.join(path.dirname(path.abspath(__file__)), pth)) |