summaryrefslogtreecommitdiff
path: root/run_tests.py
blob: a19068645d48c220f66598dd62bcfb5165338361 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import unittest

quick = False

from test.identifier_equality import *

from test.store import *

from test.graph import *
from test.triple_store import *
from test.context import *

# # Graph no longer has the type checking at the moment. Do we want to
# # put it back? Should we?
# #
# # from test.type_check import * 

from test.parser import *
if not quick:
    from test.parser_rdfcore import *

from test.rdf import * # how does this manage to be 9 tests?

from test.n3 import *
from test.nt import *

from test.util import *
from test.seq import SeqTestCase

if not quick:
    from test.store_performace import *

from test.rules import *


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