11 lines
192 B
Python
11 lines
192 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())
|