コード例 #1
0
ファイル: test_postgresql.py プロジェクト: chishaku/alembic
 def teardown_class(cls):
     cls.conn.close()
     clear_staging_env()
コード例 #2
0
ファイル: test_postgresql.py プロジェクト: chishaku/alembic
 def tearDown(self):
     clear_staging_env()
コード例 #3
0
ファイル: test_autogenerate.py プロジェクト: asmundg/alembic
 def teardown_class(cls):
     cls.m1.drop_all(cls.bind)
     clear_staging_env()
コード例 #4
0
ファイル: test_postgresql.py プロジェクト: chishaku/alembic
 def teardown_class(cls):
     clear_staging_env()
コード例 #5
0
 def teardown_class(cls):
     clear_staging_env()
コード例 #6
0
ファイル: test_autogenerate.py プロジェクト: asmundg/alembic
 def tearDown(self):
     if hasattr(self, 'metadata'):
         self.metadata.drop_all(self.bind)
     clear_staging_env()
コード例 #7
0
 def tearDown(self):
     if hasattr(self, "_alembic_metadata"):
         for m in util.to_list(self._alembic_metadata):
             m.drop_all(self.bind)
     clear_staging_env()
コード例 #8
0
ファイル: test_config.py プロジェクト: zzzeek/alembic
 def tearDown(self):
     clear_staging_env()
コード例 #9
0
 def teardown_class(cls):
     cls.m1.drop_all(cls.bind)
     clear_staging_env()
コード例 #10
0
 def tearDown(self):
     if hasattr(self, 'metadata'):
         self.metadata.drop_all(self.bind)
     clear_staging_env()
コード例 #11
0
 def tearDown(self):
     if hasattr(self, 'metadata'):
         for m in util.to_list(self.metadata):
             m.drop_all(self.bind)
     clear_staging_env()
コード例 #12
0
ファイル: test_postgresql.py プロジェクト: tc1989tc/alembic
 def teardown_class(cls):
     cls.conn.close()
     clear_staging_env()
コード例 #13
0
ファイル: _autogen_fixtures.py プロジェクト: RazerM/alembic
 def tearDown(self):
     if hasattr(self, 'metadata'):
         for m in util.to_list(self.metadata):
             m.drop_all(self.bind)
     clear_staging_env()