summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorScott Shawcroft <scott.shawcroft@gmail.com>2017-12-11 17:05:39 -0800
committerScott Shawcroft <scott.shawcroft@gmail.com>2017-12-11 17:07:28 -0800
commit8a50fe8982c36c573d8d93f0df6c52ba9772c62d (patch)
tree9375f9d42d74eda2d73692d707ffc5fd8a7d1d70 /tests
parentb31c2ea7480a816bd909f841972f228d09242821 (diff)
Always test enumerate. This will ensure that all supported ports
include it and therefore support our drivers that use it. Related to https://github.com/adafruit/Adafruit_CircuitPython_NeoPixel/pull/18
Diffstat (limited to 'tests')
-rw-r--r--tests/basics/enumerate.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/tests/basics/enumerate.py b/tests/basics/enumerate.py
index 4f8239bf7..00595cb0f 100644
--- a/tests/basics/enumerate.py
+++ b/tests/basics/enumerate.py
@@ -1,9 +1,3 @@
-try:
- enumerate
-except:
- print("SKIP")
- raise SystemExit
-
print(list(enumerate([])))
print(list(enumerate([1, 2, 3])))
print(list(enumerate([1, 2, 3], 5)))