Browse Source

chore: exclude test for python 3.9

pull/560/head
Parodi, Eugenio 🌶 3 months ago
parent
commit
ac1c866fa9
  1. 5
      tests/timeit/35.match.01.py

5
tests/timeit/35.match.01.py

@ -32,6 +32,11 @@ import timeit
from typing import List, Tuple, Iterator from typing import List, Tuple, Iterator
# match statement requires Python 3.10+
if sys.version_info < (3, 10):
print("This test requires Python 3.10 or higher (match statement not available)")
sys.exit(0)
def test_ti_01_01_ma(): def test_ti_01_01_ma():
ret = 0 ret = 0
for i in range(1000): for i in range(1000):

Loading…
Cancel
Save