Dmitri Bogomolov
e77238fa07
- make separate tests runner - tests.py; python setup.py test still works - tox.ini with coverage config - -b: issue warnings about comparing bytearray with unicode - export PYTHONWARNINGS=all on stage install
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())
|