blob: f2b032d76555c3298e62dbccc779897e217c18b9 [file] [log] [blame]
"""
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())