details: http://www.bx.psu.edu/hg/galaxy/rev/c9d95fd8bfe9 changeset: 3299:c9d95fd8bfe9 user: Nate Coraor <nate@bx.psu.edu> date: Thu Jan 28 14:52:02 2010 -0500 description: require pysqlite in functional_tests to work around a bug in nose diffstat: scripts/functional_tests.py | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diffs (14 lines): diff -r 7173ce5647ce -r c9d95fd8bfe9 scripts/functional_tests.py --- a/scripts/functional_tests.py Thu Jan 28 13:37:53 2010 -0500 +++ b/scripts/functional_tests.py Thu Jan 28 14:52:02 2010 -0500 @@ -17,6 +17,10 @@ eggs.require( "PasteDeploy" ) eggs.require( "Cheetah" ) +# this should not be required, but it is under certain conditions, thanks to this bug: +# http://code.google.com/p/python-nose/issues/detail?id=284 +eggs.require( "pysqlite" ) + import atexit, logging, os, os.path, sys, tempfile import twill, unittest, time import subprocess, sys, threading, random