diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2017-03-09 00:11:05 +0100 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2017-03-09 00:11:05 +0100 |
commit | a0cbc108ba9dbdd4cc223486561f3e6a347e2d0a (patch) | |
tree | d52948935921977275e406c38ef7fe4b8fbb184d /tests/float/builtin_float_minmax.py | |
parent | 983144404b6526c22e5c4224807ea4214e11e248 (diff) | |
download | micropython-a0cbc108ba9dbdd4cc223486561f3e6a347e2d0a.tar.gz micropython-a0cbc108ba9dbdd4cc223486561f3e6a347e2d0a.zip |
tests/float: Make various tests skippable.
Diffstat (limited to 'tests/float/builtin_float_minmax.py')
-rw-r--r-- | tests/float/builtin_float_minmax.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/float/builtin_float_minmax.py b/tests/float/builtin_float_minmax.py index ce45a768a5..42cfa63822 100644 --- a/tests/float/builtin_float_minmax.py +++ b/tests/float/builtin_float_minmax.py @@ -1,4 +1,11 @@ # test builtin min and max functions with float args +try: + min + max +except: + import sys + print("SKIP") + sys.exit() print(min(0,1.0)) print(min(1.0,0)) |