File: app.py

package info (click to toggle)
python-csb 1.2.5%2Bdfsg-10
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 8,952 kB
  • sloc: python: 24,191; xml: 812; sh: 67; makefile: 15
file content (13 lines) | stat: -rw-r--r-- 196 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
"""
CSB Test Runner app. Run with -h to see the app's documentation.
"""

from csb.test import Console


def main():
    return Console('csb.test.cases.*')


if __name__ == '__main__':
    main()