Comment 7 for bug 1804062

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Related fix merged to nova (master)

Reviewed: https://review.opendev.org/664622
Committed: https://git.openstack.org/cgit/openstack/nova/commit/?id=18ba6e6e6a7d1294bd1f1ece454f84eb65b219bb
Submitter: Zuul
Branch: master

commit 18ba6e6e6a7d1294bd1f1ece454f84eb65b219bb
Author: Eric Fried <email address hidden>
Date: Tue Jun 11 10:24:11 2019 -0500

    Skip test_check_doubled_words hacking check UT

    The referenced bug has reared its ugly head in python 2.7.15 in (at
    least) releaselevel='final', which is being used in the gate, as well as
    3.6.7+. Disable the test entirely until we can fix or work around the
    bug in the tokenizer.

    The hacking check itself is still in place. This is just disabling the
    unit test that tries to test the hacking check.

    NOTE: Noticed that the hacking check is operating on physical_line,
    which means it'll catch things like:

     "This is the the error"

    but not:

     ("This is the "
      "the error")

    ...which is probably way more likely.

    Change-Id: I8826c3fb89690805baae6b9b7b48985abb8d62d3
    Related-Bug: #1804062