/tests/main.py
Python | 29 lines | 19 code | 9 blank | 1 comment | 4 complexity | 98c02082a72f15840f860bdb4b5273b2 MD5 | raw file
- #!/usr/bin/env python
- import sys
- from types import ModuleType
- from os.path import abspath, dirname
- from subprocess import Popen, STDOUT
- def importable(module):
- try:
- m = __import__(module, globals(), locals())
- return type(m) is ModuleType
- except ImportError:
- return False
- def main():
- cmd = ["py.test", "-r", "fsxX", "--ignore=tmp"]
- if importable("pytest_cov"):
- cmd.append("--cov=circuits")
- cmd.append("--cov-report=html")
- cmd.append(dirname(abspath(__file__)))
- raise SystemExit(Popen(cmd, stdout=sys.stdout, stderr=STDOUT).wait())
- if __name__ == "__main__":
- main()