Commands.app

python -m unittest

Testing

Run tests with unittest framework

Examples
Common usage examples

Discover and run all tests

python -m unittest

Run specific test module

python -m unittest tests.test_module

Discover tests in current directory

python -m unittest discover
Notes
  • Built-in testing framework, no installation needed
Related Commands
You might also find these useful