You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
691 B
Python
23 lines
691 B
Python
#!/usr/bin/env python
|
|
"""Custom tests runner script for tox and python3"""
|
|
import random # noseq
|
|
import sys
|
|
import unittest
|
|
|
|
|
|
def unittest_discover():
|
|
"""Explicit test suite creation"""
|
|
if sys.hexversion >= 0x3000000:
|
|
from pybitmessage import pathmagic
|
|
pathmagic.setup()
|
|
loader = unittest.defaultTestLoader
|
|
# randomize the order of tests in test cases
|
|
loader.sortTestMethodsUsing = lambda a, b: random.randint(-1, 1)
|
|
# pybitmessage symlink may disappear on Windows
|
|
return loader.discover('src.tests')
|
|
|
|
|
|
if __name__ == "__main__":
|
|
result = unittest.TextTestRunner(verbosity=2).run(unittest_discover())
|
|
sys.exit(not result.wasSuccessful())
|