File: test_all.py

package info (click to toggle)
python-ptk 1.3.8%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 416 kB
  • sloc: python: 3,616; makefile: 200
file content (24 lines) | stat: -rwxr-xr-x 497 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/bin/env python3

import os, sys, unittest
sys.path.insert(0, os.path.join(os.path.dirname(__file__), '..'))

from test_utils import *
from test_regex import *
from test_regex_tokenizer import *
from test_regex_parser import *
from test_lexer import *
from test_grammar import *
from test_parser import *

try:
    import twisted
except ImportError:
    pass
else:
    from test_deferred_lexer import *
    from test_deferred_parser import *


if __name__ == '__main__':
    unittest.main()