|
5 | 5 | from core.enums.os_type import OSType
|
6 | 6 | from core.enums.platform_type import Platform
|
7 | 7 | from core.settings import Settings
|
8 |
| -from core.utils.file_utils import Folder |
9 | 8 | from core.utils.docker import Docker
|
| 9 | +from core.utils.file_utils import Folder |
10 | 10 | from data.sync.master_details_ng import sync_master_detail_ng, run_master_detail_ng
|
11 | 11 | from data.templates import Template
|
12 | 12 | from products.nativescript.tns import Tns
|
@@ -61,22 +61,27 @@ def test_300_run_android_bundle_aot(self):
|
61 | 61 | def test_300_run_ios_bundle_aot(self):
|
62 | 62 | sync_master_detail_ng(self.app_name, Platform.IOS, self.sim, aot=True)
|
63 | 63 |
|
| 64 | + @unittest.skip('Ignore because of https://github.com/NativeScript/nativescript-ui-feedback/issues/1297') |
64 | 65 | def test_310_run_android_bundle_uglify(self):
|
65 | 66 | sync_master_detail_ng(self.app_name, Platform.ANDROID, self.emu, uglify=True)
|
66 | 67 |
|
| 68 | + @unittest.skip('Ignore because of https://github.com/NativeScript/nativescript-ui-feedback/issues/1297') |
67 | 69 | @unittest.skipIf(Settings.HOST_OS != OSType.OSX, 'iOS tests can be executed only on macOS.')
|
68 | 70 | def test_310_run_ios_bundle_uglify(self):
|
69 | 71 | sync_master_detail_ng(self.app_name, Platform.IOS, self.sim, uglify=True)
|
70 | 72 |
|
| 73 | + @unittest.skip('Ignore because of https://github.com/NativeScript/nativescript-ui-feedback/issues/1297') |
71 | 74 | @unittest.skipIf(Settings.HOST_OS == OSType.WINDOWS, 'temporary skip on windows')
|
72 | 75 | # TODO: remove skip when https://github.com/NativeScript/nativescript-dev-webpack/issues/1021 fixed
|
73 | 76 | def test_320_run_android_bundle_aot_and_uglify(self):
|
74 | 77 | sync_master_detail_ng(self.app_name, Platform.ANDROID, self.emu, aot=True, uglify=True)
|
75 | 78 |
|
| 79 | + @unittest.skip('Ignore because of https://github.com/NativeScript/nativescript-ui-feedback/issues/1297') |
76 | 80 | @unittest.skipIf(Settings.HOST_OS != OSType.OSX, 'iOS tests can be executed only on macOS.')
|
77 | 81 | def test_320_run_ios_bundle_aot_and_uglify(self):
|
78 | 82 | sync_master_detail_ng(self.app_name, Platform.IOS, self.sim, aot=True, uglify=True)
|
79 | 83 |
|
| 84 | + @unittest.skip('Ignore because of https://github.com/NativeScript/nativescript-ui-feedback/issues/1297') |
80 | 85 | def test_330_run_android_release_snapshot_aot_and_uglify(self):
|
81 | 86 | run_master_detail_ng(self.app_name, Platform.ANDROID, self.emu, aot=True, uglify=True,
|
82 | 87 | release=True, snapshot=True)
|
0 commit comments