18 lines
188 B
Python
18 lines
188 B
Python
"""
|
|
Lightweight test runner.
|
|
|
|
Usage:
|
|
python test.py
|
|
"""
|
|
|
|
import sys
|
|
import pytest
|
|
|
|
|
|
def main() -> int:
|
|
return pytest.main(["-q"])
|
|
|
|
|
|
if __name__ == "__main__":
|
|
sys.exit(main())
|