2014-07-31 06:16:51 +08:00
|
|
|
"""
|
2014-07-31 08:50:00 +08:00
|
|
|
This is the script that is actually frozen into an executable: simply executes
|
|
|
|
py.test main().
|
2014-07-31 06:16:51 +08:00
|
|
|
"""
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
import sys
|
|
|
|
import pytest
|
|
|
|
sys.exit(pytest.main())
|