Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
pytest / testing / cx_freeze / runtests_script.py
Size: Mime:
"""
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())