From 91c78274f5f541beafb8082855a5086deed36d73 Mon Sep 17 00:00:00 2001 From: holger krekel Date: Tue, 28 Apr 2009 23:17:04 +0200 Subject: [PATCH] fix missing import skip problem --HG-- branch : trunk --- py/test/plugin/pytest_resultdb.py | 1 + 1 file changed, 1 insertion(+) diff --git a/py/test/plugin/pytest_resultdb.py b/py/test/plugin/pytest_resultdb.py index da2718ba6..d70e96dfe 100644 --- a/py/test/plugin/pytest_resultdb.py +++ b/py/test/plugin/pytest_resultdb.py @@ -287,6 +287,7 @@ def verify_archive_item_shape(item): class TestWithFunctionIntegration: def getarchive(self, testdir, arg): + py.test.importorskip("sqlite3") py.test.importorskip("simplejson") resultdb = testdir.tmpdir.join("resultdb") args = ["--resultdb=%s" % resultdb, "--resultdb_format=sqlite"] + [arg]