Commit 4bbc3aa3 by John Eskew

Turn on deprecation warnings post-Django 1.11 for bokchoy tests.

parent 50ebfaf7
...@@ -41,6 +41,7 @@ class TestPaverBokChoyCmd(unittest.TestCase): ...@@ -41,6 +41,7 @@ class TestPaverBokChoyCmd(unittest.TestCase):
"SELENIUM_DRIVER_LOG_DIR='{}/test_root/log{}'".format(REPO_DIR, shard_str), "SELENIUM_DRIVER_LOG_DIR='{}/test_root/log{}'".format(REPO_DIR, shard_str),
"VERIFY_XSS='{}'".format(verify_xss), "VERIFY_XSS='{}'".format(verify_xss),
"python", "python",
"-Wd",
"-m", "-m",
"pytest", "pytest",
"{}/common/test/acceptance/{}".format(REPO_DIR, name), "{}/common/test/acceptance/{}".format(REPO_DIR, name),
......
...@@ -341,7 +341,8 @@ class BokChoyTestSuite(TestSuite): ...@@ -341,7 +341,8 @@ class BokChoyTestSuite(TestSuite):
cmd.append("--rcfile={}".format(self.coveragerc)) cmd.append("--rcfile={}".format(self.coveragerc))
else: else:
cmd += [ cmd += [
"python" "python",
"-Wd",
] ]
cmd += [ cmd += [
"-m", "-m",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment