This website requires JavaScript.
Explore
Help
Sign In
djsundog
/
circuitpython
Watch
1
Star
0
Fork
You've already forked circuitpython
0
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
3c7ca2004c
circuitpython
/
tests
/
float
/
true_value.py
8 lines
104 B
Python
Raw
Normal View
History
Unescape
Escape
tests: Split out those tests requiring float and import. Tests in basics (which should probably be renamed to core) should not rely on float, or import any non-built-in files. This way these tests can be run when those features are not available. All test in basics now pass on the pyboard using stmhal port, except for string-repr which has some issues with character hex printing.
2014-04-17 11:21:43 -04:00
# Test true-ish value handling
if
not
0.0
:
print
(
"
float 0
"
)
tests: Format all Python code with black, except tests in basics subdir. 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.
2020-03-22 22:26:08 -04:00
if
not
0
+
0
j
:
tests: Split out those tests requiring float and import. Tests in basics (which should probably be renamed to core) should not rely on float, or import any non-built-in files. This way these tests can be run when those features are not available. All test in basics now pass on the pyboard using stmhal port, except for string-repr which has some issues with character hex printing.
2014-04-17 11:21:43 -04:00
print
(
"
complex 0
"
)