We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2526210 + 18ba6e6 commit bd7e374Copy full SHA for bd7e374
nova/tests/unit/test_hacking.py
@@ -12,7 +12,6 @@
12
# License for the specific language governing permissions and limitations
13
# under the License.
14
15
-import sys
16
import textwrap
17
18
import mock
@@ -581,9 +580,8 @@ def test_check_config_option_in_central_place(self):
581
580
582
# TODO(cdent): Remove when https://bugs.launchpad.net/nova/+bug/1804062
583
# is resolved.
584
- @testtools.skipIf(
585
- sys.version_info[0:3] >= (3, 6, 7),
586
- 'tokenize has backwards incompatible behavior from 3.6.7')
+ @testtools.skip(
+ 'tokenize has backwards incompatible behavior from 3.6.7 and 2.7.15')
587
def test_check_doubled_words(self):
588
errors = [(1, 0, "N343")]
589
0 commit comments