"""
Called by tox.ini: uses the generated executable to run the tests in ./tests/
directory.
"""if__name__=="__main__":importosimportsysexecutable=os.path.join(os.getcwd(),"dist","runtests_script","runtests_script")ifsys.platform.startswith("win"):executable+=".exe"sys.exit(os.system("%s tests"%executable))