diff options
| author | Scott Shawcroft <scott.shawcroft@gmail.com> | 2017-12-11 17:05:39 -0800 |
|---|---|---|
| committer | Scott Shawcroft <scott.shawcroft@gmail.com> | 2017-12-11 17:07:28 -0800 |
| commit | 8a50fe8982c36c573d8d93f0df6c52ba9772c62d (patch) | |
| tree | 9375f9d42d74eda2d73692d707ffc5fd8a7d1d70 /tests | |
| parent | b31c2ea7480a816bd909f841972f228d09242821 (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.py | 6 |
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))) |
