File: app.py

package info (click to toggle)
python-csb 1.2.3%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 8,612 kB
  • ctags: 4,593
  • sloc: python: 24,200; xml: 812; makefile: 32; sh: 6
file content (11 lines) | stat: -rw-r--r-- 180 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
"""
CSB Test Runner app. Run with -h to see the app's documentation.
"""

from csb.test import Console

main = Console

if __name__ == '__main__':
    
    main('csb.test.cases.*')