diff options
Diffstat (limited to 'test/engine/proxy_engine.py')
-rw-r--r-- | test/engine/proxy_engine.py | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/test/engine/proxy_engine.py b/test/engine/proxy_engine.py index 5b957b4dc..26b738e41 100644 --- a/test/engine/proxy_engine.py +++ b/test/engine/proxy_engine.py @@ -85,9 +85,16 @@ class ProxyEngineTest1(ProxyTestBase): class ThreadProxyTest(ProxyTestBase): def tearDownAll(self): - os.remove('threadtesta.db') - os.remove('threadtestb.db') + try: + os.remove('threadtesta.db') + except OSError: + pass + try: + os.remove('threadtestb.db') + except OSError: + pass + @testbase.supported('sqlite') def test_multi_thread(self): from threading import Thread |