micropython/tests
Daniel Campora 4cc0cd6cab tests/wipy: Additional tests for when the UART is un-initialized. 2015-09-10 08:00:35 +02:00
..
basics tests: Move int+unicode test to unicode-specific test directory. 2015-09-07 21:36:24 +01:00
bench py: Use sequence of strings for named tuple initialization 2015-01-01 14:53:23 +02:00
cmdline tests: Consolidate all feature check snippets under feature_check/. 2015-08-30 11:36:42 +03:00
extmod tests: Add tests to improve coverage of objstr.c. 2015-09-03 23:06:18 +01:00
feature_check tests: Consolidate all feature check snippets under feature_check/. 2015-08-30 11:36:42 +03:00
float py/lexer: Properly classify floats that look like hex numbers. 2015-09-07 17:33:44 +01:00
import tests: Add test for relative import without package context. 2015-06-27 00:40:22 +03:00
inlineasm py/inlinethumb: Support for core floating point instructions. 2015-04-19 15:47:05 +01:00
io tests: Make io test cleanup after itself by removing 'testfile'. 2015-08-21 08:45:52 +01:00
micropython tests: Consolidate all feature check snippets under feature_check/. 2015-08-30 11:36:42 +03:00
misc py/lexer: Raise NotImplError for unicode name escape, instead of assert. 2015-09-07 17:08:49 +01:00
pyb tests: Add test for pyboard SPI in slave mode, recv with no master. 2015-08-05 23:47:57 +01:00
pybnative
unicode tests: Move int+unicode test to unicode-specific test directory. 2015-09-07 21:36:24 +01:00
unix tests: Add tests to improve coverage of objstr.c. 2015-09-03 23:06:18 +01:00
wipy tests/wipy: Additional tests for when the UART is un-initialized. 2015-09-10 08:00:35 +02:00
README
pyboard.py
run-bench-tests
run-tests tests: Ignore exception chain test on the WiPy. 2015-09-10 07:59:53 +02:00
run-tests-exp.py tests: Add run-tests-exp.py, simple MicroPython-based test runner. 2014-12-24 16:34:05 +00:00
run-tests-exp.sh run-tests-exp.sh: Typo fix in comment. 2015-02-21 03:22:33 +02:00

README

This directory contains tests for various functionality areas of MicroPython.
To run all stable tests, run "run-tests" script in this directory. Note
that bytecode tests are not yet stable and should be run separately in
"bytecode" subdirectory.

When creating new tests, anything that relies on float support should go in the 
float/ subdirectory.  Anything that relies on import x, where x is not a built-in
module, should go in the import/ subdirectory.