You've already forked Core2forAWS-MicroPython
mirror of
https://github.com/m5stack/Core2forAWS-MicroPython.git
synced 2026-05-20 10:30:31 -07:00
3dc324d3f1
This adds the Python files in the tests/ directory to be formatted with ./tools/codeformat.py. The basics/ subdirectory is excluded for now so we aren't changing too much at once. In a few places `# fmt: off`/`# fmt: on` was used where the code had special formatting for readability or where the test was actually testing the specific formatting.
18 lines
422 B
Python
18 lines
422 B
Python
# tests meminfo functions in micropython module
|
|
|
|
import micropython
|
|
|
|
# these functions are not always available
|
|
if not hasattr(micropython, "mem_total"):
|
|
print("SKIP")
|
|
else:
|
|
t = micropython.mem_total()
|
|
c = micropython.mem_current()
|
|
p = micropython.mem_peak()
|
|
|
|
l = list(range(10000))
|
|
|
|
print(micropython.mem_total() > t)
|
|
print(micropython.mem_current() > c)
|
|
print(micropython.mem_peak() > p)
|