diff options
author | eikeon <devnull@localhost> | 2005-12-09 22:27:14 +0000 |
---|---|---|
committer | eikeon <devnull@localhost> | 2005-12-09 22:27:14 +0000 |
commit | fb8dc15679fba9d5719be2ba402c59040032801c (patch) | |
tree | 3502eb4fa56ef9c64a84664f761bf3fac3a2b5be /run_tests.py | |
parent | 47a735a3038d189fae32e5c1b2330a5e196b5d84 (diff) | |
download | rdflib-fb8dc15679fba9d5719be2ba402c59040032801c.tar.gz |
finished backend -> store bit including some backward compat. bits
Diffstat (limited to 'run_tests.py')
-rw-r--r-- | run_tests.py | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/run_tests.py b/run_tests.py index e8449d92..7cfb6d68 100644 --- a/run_tests.py +++ b/run_tests.py @@ -1,9 +1,11 @@ import unittest
+quick = True
+
from test.identifier_equality import *
from test.store import *
-from test.store_performace import *
+
from test.graph import *
from test.triple_store import *
from test.context import *
@@ -14,7 +16,8 @@ from test.context import * # # from test.type_check import *
from test.parser import *
-from test.parser_rdfcore import *
+if not quick:
+ from test.parser_rdfcore import *
from test.rdf import * # how does this manage to be 9 tests?
@@ -24,6 +27,9 @@ 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 *
|