test_ok2/testing/freeze/runtests_script.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
193 B
Python
Raw Permalink Normal View History

"""
This is the script that is actually frozen into an executable: simply executes
pytest main().
"""
2018-05-23 22:48:46 +08:00
if __name__ == "__main__":
import sys
import pytest
2018-05-23 22:48:46 +08:00
sys.exit(pytest.main())