From 8a50fe8982c36c573d8d93f0df6c52ba9772c62d Mon Sep 17 00:00:00 2001 From: Scott Shawcroft Date: Mon, 11 Dec 2017 17:05:39 -0800 Subject: [PATCH] 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 --- tests/basics/enumerate.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/tests/basics/enumerate.py b/tests/basics/enumerate.py index 4f8239bf72..00595cb0f6 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)))