We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 77ccb00 commit 666a98cCopy full SHA for 666a98c
runtests.py
@@ -8,6 +8,7 @@
8
9
Trac's testing framework isn't well suited for plugins, so we NIH'd a bit.
10
"""
11
+from __future__ import print_function
12
13
import argparse
14
import BaseHTTPServer
@@ -2175,8 +2176,8 @@ def get_parser():
2175
2176
COVERAGE_BIN = os.path.join(options.virtualenv, 'bin', COVERAGE_BIN)
2177
2178
TESTDIR = tempfile.mkdtemp(prefix='trac-github-test-')
- print "Starting tests using temporary directory %r" % TESTDIR
2179
- print "Using git version %s" % git_check_output('--version').strip()
+ print("Starting tests using temporary directory %r" % TESTDIR)
2180
+ print("Using git version %s" % git_check_output('--version').strip())
2181
2182
try:
2183
test_program = unittest.main(argv=[sys.argv[0]] + unittest_argv, exit=False)
0 commit comments