Files
pytest2/testing/cx_freeze/runtests_script.py
2016-06-21 16:16:57 +02:00

9 lines
198 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())