summaryrefslogtreecommitdiffstats
path: root/run_tests.py
diff options
context:
space:
mode:
authorVishvananda Ishaya <vishvananda@gmail.com>2011-02-21 11:42:46 -0800
committerVishvananda Ishaya <vishvananda@gmail.com>2011-02-21 11:42:46 -0800
commitc7d83e26f7d6388857b4db4538602395b688aa7a (patch)
tree3924b91977be2090cb20bf652ab1b9502c7139cd /run_tests.py
parent8388144744849265b46d26735da01a11e35990b0 (diff)
downloadnova-c7d83e26f7d6388857b4db4538602395b688aa7a.tar.gz
nova-c7d83e26f7d6388857b4db4538602395b688aa7a.tar.xz
nova-c7d83e26f7d6388857b4db4538602395b688aa7a.zip
use tests.sqlite so it doesn't conflict with running db
Diffstat (limited to 'run_tests.py')
-rw-r--r--run_tests.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/run_tests.py b/run_tests.py
index bf12c62c6..274dc4a97 100644
--- a/run_tests.py
+++ b/run_tests.py
@@ -58,8 +58,8 @@ class NovaTestRunner(core.TextTestRunner):
if __name__ == '__main__':
- if os.path.exists("nova.sqlite"):
- os.unlink("nova.sqlite")
+ if os.path.exists("tests.sqlite"):
+ os.unlink("tests.sqlite")
c = config.Config(stream=sys.stdout,
env=os.environ,
verbosity=3,