add python 3.6 unit test job

See the python3-first goal document for details:
https://governance.openstack.org/tc/goals/stein/python3-first.html

This also modifies a unit test to not attempt to pass the re.LOCALE flag
when the regex is a string, which is prohibited in Python 3.6. It would
be possible to use a raw bytes object as the regex instead, but we're
testing the repr() here and it has a different representation between
Python 2 and Python 3. Just use the re.IGNORECASE flag instead for the
purposes of the test.

Change-Id: I666d49d0a29963bcaef6ca69be34dc4869f6db6f
Co-Authored-By: Zane Bitter <zbitter@redhat.com>
Story: #2002586
Task: #24322
This commit is contained in:
Doug Hellmann 2018-08-07 16:17:31 -04:00 committed by Zane Bitter
parent c2842394ff
commit 34a010e168
2 changed files with 3 additions and 2 deletions

View File

@ -11,3 +11,4 @@
- publish-openstack-docs-pti
- check-requirements
- periodic-stable-jobs
- openstack-python36-jobs

View File

@ -320,8 +320,8 @@ class RegexTest(testtools.TestCase):
def testReprWithFlags(self):
"""repr should return the regular expression pattern and flags."""
self.assertTrue(repr(mox.Regex(r"a\s+b", flags=4)) ==
"<regular expression 'a\s+b', flags=4>")
self.assertTrue(repr(mox.Regex(r"a\s+b", flags=2)) ==
"<regular expression 'a\s+b', flags=2>")
class IsTest(testtools.TestCase):