8b54596639
Running pre-commit on all files after replacing reorder-python-imports by isort.
12 lines
193 B
Python
12 lines
193 B
Python
"""
|
|
This is the script that is actually frozen into an executable: simply executes
|
|
pytest main().
|
|
"""
|
|
|
|
if __name__ == "__main__":
|
|
import sys
|
|
|
|
import pytest
|
|
|
|
sys.exit(pytest.main())
|