Statistics
| Branch: | Tag: | Revision:

root / ci / unit_tests.py @ 6bed578c

History | View | Annotate | Download (246 Bytes)

1
#!/usr/bin/env python
2

    
3
"""
4
Run Synnefo unit test suite
5
"""
6

    
7
from utils import SynnefoCI
8

    
9

    
10
def unit_test():
11
    """Run Synnefo unit test suite"""
12
    synnefo_ci = SynnefoCI()
13
    synnefo_ci.unit_test()
14

    
15

    
16
if __name__ == "__main__":
17
    unit_test()