1"""
2This is the script that is actually frozen into an executable: simply executes
3py.test main().
4"""
5
6if __name__ == "__main__":
7    import sys
8    import pytest
9
10    sys.exit(pytest.main())
11