Skip to content

Commit 8a50fe8

Browse files
committed
Always test enumerate. This will ensure that all supported ports
include it and therefore support our drivers that use it. Related to adafruit/Adafruit_CircuitPython_NeoPixel#18
1 parent b31c2ea commit 8a50fe8

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

tests/basics/enumerate.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,3 @@
1-
try:
2-
enumerate
3-
except:
4-
print("SKIP")
5-
raise SystemExit
6-
71
print(list(enumerate([])))
82
print(list(enumerate([1, 2, 3])))
93
print(list(enumerate([1, 2, 3], 5)))

0 commit comments

Comments
 (0)