Files
pytest2/testing/freeze/runtests_script.py
Ronny Pfannschmidt 703e4b11ba run black
2018-05-23 16:48:46 +02:00

11 lines
193 B
Python

"""
This is the script that is actually frozen into an executable: simply executes
py.test main().
"""
if __name__ == "__main__":
import sys
import pytest
sys.exit(pytest.main())