Total Complexity | 0 |
Total Lines | 16 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | #!/usr/bin/env python |
||
2 | |||
3 | import nose |
||
4 | import os |
||
5 | import sys |
||
6 | |||
7 | if __name__ == "__main__": |
||
8 | test_directory = os.path.dirname(os.path.abspath(__file__)) |
||
9 | test_argv = sys.argv |
||
10 | test_argv.append('--verbosity=2') |
||
11 | result = nose.run(argv=test_argv) |
||
12 | if(result): |
||
13 | sys.exit(0) |
||
14 | else: |
||
15 | sys.exit(1) |
||
16 |