From 969a052ede6deaf9c2338235ef169288d6db9022 Mon Sep 17 00:00:00 2001 From: Diane Trout Date: Mon, 9 May 2011 16:56:54 -0700 Subject: [PATCH] Add fake settings.py file point to the real htsworkflow.settings file manage.py and nosetests were assuming that settings were in the current directory. Though a little later in its startup manage.py switched to thinking settings was in htsworkflow.setttings. I have no idea why --- settings.py | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 settings.py diff --git a/settings.py b/settings.py new file mode 100644 index 0000000..1731c13 --- /dev/null +++ b/settings.py @@ -0,0 +1,4 @@ +# +# provide a pointer to the right settings.py file for +# programs that assume it starts in the current directory +from htsworkflow.settings import * -- 2.30.2