Refactor integration tests

This commit is contained in:
Mikhail Gordeev 2020-04-20 14:36:30 +03:00
parent fcec9c3b9b
commit 2b15168983

10
tests/test_integration_images.py Executable file → Normal file
View File

@ -1,21 +1,19 @@
#!/usr/bin/python3
from contextlib import ExitStack
from pathlib import Path
from types import SimpleNamespace
from unittest import TestCase
from unittest import mock
import os
import shutil
import unittest
from cloud_build.cloud_build import CB
from cloud_build import CB
from tests.call import Call
class TestCommon(unittest.TestCase):
class TestIntegrationImages(TestCase):
def setUp(self):
self.images = TestCommon.images
self.images = self.__class__.images
@classmethod
def setUpClass(cls):