MCPcopy Create free account
hub / github.com/FastLED/FastLED / main

Function main

ci/test_led_timing_conversion.py:413–425  ·  view source on GitHub ↗

Run test suite with verbose output.

()

Source from the content-addressed store, hash-verified

411
412
413def main() -> int:
414 """Run test suite with verbose output."""
415 # Run tests
416 loader = unittest.TestLoader()
417 suite = loader.loadTestsFromModule(__import__(__name__))
418 runner = unittest.TextTestRunner(verbosity=2)
419 result = runner.run(suite)
420
421 # Print summary if all tests passed
422 if result.wasSuccessful():
423 print_chipset_summary()
424
425 return 0 if result.wasSuccessful() else 1
426
427
428if __name__ == "__main__":

Callers 1

Calls 2

print_chipset_summaryFunction · 0.85
runMethod · 0.45

Tested by

no test coverage detected