Files
pytest2/testing/freeze/runtests_script.py
2019-05-14 15:56:31 -07:00

12 lines
217 B
Python

# -*- coding: utf-8 -*-
"""
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())