From: Michael Orlitzky Date: Tue, 1 Nov 2016 16:27:56 +0000 (-0400) Subject: Use a shebang for the main test executable. X-Git-Tag: 0.1.0~98 X-Git-Url: http://gitweb.michael.orlitzky.com/?a=commitdiff_plain;h=903bd9bee55bcc404ae39a94d2625814d5bcc2a3;hp=903bd9bee55bcc404ae39a94d2625814d5bcc2a3;p=dunshire.git Use a shebang for the main test executable. This replaces the "python test/" call with "./test/__main__py". It may seem like a pointless change, but the former will always use whatever "python" points to, and the latter will use the contents of the shebang in "__main__.py". Distributions can fix the shebang on that one file to ensure that the test suite is run with the proper version of python. ---