Skip to content

Commit

Permalink
Mark some tests still not fixed in Python 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
whydoubt committed Aug 17, 2019
1 parent 4134568 commit 229556c
Showing 1 changed file with 32 additions and 32 deletions.
64 changes: 32 additions & 32 deletions tests/datatypes/test_bytes.py
Original file line number Diff line number Diff line change
Expand Up @@ -636,22 +636,22 @@ class BinaryBytesOperationTests(BinaryOperationTestCase, TranspileTestCase):
]

not_implemented_versions = {
'test_modulo_None': (3.5, 3.6),
'test_modulo_NotImplemented': (3.5, 3.6),
'test_modulo_bool': (3.5, 3.6),
'test_modulo_bytearray': (3.5, 3.6),
'test_modulo_bytes': (3.5, 3.6),
'test_modulo_class': (3.5, 3.6),
'test_modulo_float': (3.5, 3.6),
'test_modulo_frozenset': (3.5, 3.6),
'test_modulo_int': (3.5, 3.6),
'test_modulo_list': (3.5, 3.6),
'test_modulo_range': (3.5, 3.6),
'test_modulo_set': (3.5, 3.6),
'test_modulo_slice': (3.5, 3.6),
'test_modulo_str': (3.5, 3.6),
'test_modulo_tuple': (3.5, 3.6),
'test_modulo_obj': (3.5, 3.6),
'test_modulo_None': (3.5, 3.6, 3.7),
'test_modulo_NotImplemented': (3.5, 3.6, 3.7),
'test_modulo_bool': (3.5, 3.6, 3.7),
'test_modulo_bytearray': (3.5, 3.6, 3.7),
'test_modulo_bytes': (3.5, 3.6, 3.7),
'test_modulo_class': (3.5, 3.6, 3.7),
'test_modulo_float': (3.5, 3.6, 3.7),
'test_modulo_frozenset': (3.5, 3.6, 3.7),
'test_modulo_int': (3.5, 3.6, 3.7),
'test_modulo_list': (3.5, 3.6, 3.7),
'test_modulo_range': (3.5, 3.6, 3.7),
'test_modulo_set': (3.5, 3.6, 3.7),
'test_modulo_slice': (3.5, 3.6, 3.7),
'test_modulo_str': (3.5, 3.6, 3.7),
'test_modulo_tuple': (3.5, 3.6, 3.7),
'test_modulo_obj': (3.5, 3.6, 3.7),
}


Expand All @@ -663,22 +663,22 @@ class InplaceBytesOperationTests(InplaceOperationTestCase, TranspileTestCase):
]

not_implemented_versions = {
'test_modulo_None': (3.5, 3.6),
'test_modulo_NotImplemented': (3.5, 3.6),
'test_modulo_bool': (3.5, 3.6),
'test_modulo_bytearray': (3.5, 3.6),
'test_modulo_bytes': (3.5, 3.6),
'test_modulo_class': (3.5, 3.6),
'test_modulo_float': (3.5, 3.6),
'test_modulo_frozenset': (3.5, 3.6),
'test_modulo_int': (3.5, 3.6),
'test_modulo_list': (3.5, 3.6),
'test_modulo_range': (3.5, 3.6),
'test_modulo_set': (3.5, 3.6),
'test_modulo_slice': (3.5, 3.6),
'test_modulo_str': (3.5, 3.6),
'test_modulo_tuple': (3.5, 3.6),
'test_modulo_obj': (3.5, 3.6),
'test_modulo_None': (3.5, 3.6, 3.7),
'test_modulo_NotImplemented': (3.5, 3.6, 3.7),
'test_modulo_bool': (3.5, 3.6, 3.7),
'test_modulo_bytearray': (3.5, 3.6, 3.7),
'test_modulo_bytes': (3.5, 3.6, 3.7),
'test_modulo_class': (3.5, 3.6, 3.7),
'test_modulo_float': (3.5, 3.6, 3.7),
'test_modulo_frozenset': (3.5, 3.6, 3.7),
'test_modulo_int': (3.5, 3.6, 3.7),
'test_modulo_list': (3.5, 3.6, 3.7),
'test_modulo_range': (3.5, 3.6, 3.7),
'test_modulo_set': (3.5, 3.6, 3.7),
'test_modulo_slice': (3.5, 3.6, 3.7),
'test_modulo_str': (3.5, 3.6, 3.7),
'test_modulo_tuple': (3.5, 3.6, 3.7),
'test_modulo_obj': (3.5, 3.6, 3.7),
}

is_flakey = [
Expand Down

0 comments on commit 229556c

Please sign in to comment.