run-tests.py 275 B

12345678910111213
  1. #! python2.7
  2. from soundrts.lib import log
  3. log.add_console_handler()
  4. from soundrts import version
  5. version.IS_DEV_VERSION = True
  6. import pytest
  7. # note: "--capture=sys" is necessary to run in IDLE
  8. pytest.main("soundrts/tests --capture=sys")
  9. raw_input("[press ENTER to quit]")