From a67aef730efd08a77c817be4a6607dff790c2131 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Konstantin=20Gru=CC=88ndger?= Date: Thu, 14 Mar 2019 08:39:42 +0100 Subject: [PATCH] Where does the travis stall comes from??? --- tests/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/base.py b/tests/base.py index 1cace30..9ee150e 100644 --- a/tests/base.py +++ b/tests/base.py @@ -9,9 +9,9 @@ from ogn_python import db # noqa: E402 class TestBaseDB(unittest.TestCase): @classmethod def setUpClass(cls): - db.drop_all() db.session.execute('CREATE EXTENSION IF NOT EXISTS postgis;') db.session.commit() + db.drop_all() db.create_all() def setUp(self):