diff options
author | Mark Sandan <msandan@utexas.edu> | 2016-04-22 18:42:19 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2016-06-16 11:51:53 -0400 |
commit | 42078107f160d52e358db309d54c966440cc8a26 (patch) | |
tree | c7fd0c9caae059263e2447ddd6c1bfe2f017a9f4 /setup.py | |
parent | 1f3e5d9826fe989f2212745f6b3592b2ef9b5e32 (diff) | |
download | sqlalchemy-42078107f160d52e358db309d54c966440cc8a26.tar.gz |
update pytest good practices link in PyTest class
Change-Id: Ie96edd05e962663e9ddeeda85b24858caabd3bfd
Pull-request: https://github.com/zzzeek/sqlalchemy/pull/262
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -75,8 +75,10 @@ class Distribution(_Distribution): class PyTest(TestCommand): - # from https://pytest.org/latest/goodpractises.html\ - # #integration-with-setuptools-test-commands + # from http://pytest.org/latest/goodpractices.html\ + # #integrating-with-setuptools-python-setup-py-test-pytest-runner + # TODO: prefer pytest-runner package at some point, however it was + # not working at the time of this comment. user_options = [('pytest-args=', 'a', "Arguments to pass to py.test")] default_options = ["-n", "4", "-q"] |