From: Mark Sandan Date: Fri, 22 Apr 2016 22:42:19 +0000 (-0400) Subject: update pytest good practices link in PyTest class X-Git-Tag: rel_1_1_0b1~2^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=42078107f160d52e358db309d54c966440cc8a26;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git update pytest good practices link in PyTest class Change-Id: Ie96edd05e962663e9ddeeda85b24858caabd3bfd Pull-request: https://github.com/zzzeek/sqlalchemy/pull/262 --- diff --git a/setup.py b/setup.py index 7fe61a4aaf..2f5c3178cd 100644 --- a/setup.py +++ b/setup.py @@ -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"]