Statistics
| Branch: | Tag: | Revision:

root / ci / run_burnin.py @ 525f2979

History | View | Annotate | Download (259 Bytes)

1
#!/usr/bin/env python
2

    
3
"""
4
Run burnin functional test suite
5
"""
6

    
7
from utils import SynnefoCI
8

    
9

    
10
def run_burnin():
11
    """Run burnin functional test suite"""
12
    synnefo_ci = SynnefoCI()
13
    synnefo_ci.run_burnin()
14

    
15

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