W191 indentation contains tabs W292 no newline at end of file W293 blank line contains whitespace W391 blank line at end of file
10 lines
192 B
Python
10 lines
192 B
Python
"""
|
|
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())
|