Skip to content

Commit 9388f35

Browse files
authored
chore: ignore master details ng tests because of issue (#429)
Ignore tests because of ProgressNS/nativescript-ui-feedback#1297
1 parent fdb00ff commit 9388f35

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

tests/cli/run/templates/master_detail_ng_tests.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
from core.enums.os_type import OSType
66
from core.enums.platform_type import Platform
77
from core.settings import Settings
8-
from core.utils.file_utils import Folder
98
from core.utils.docker import Docker
9+
from core.utils.file_utils import Folder
1010
from data.sync.master_details_ng import sync_master_detail_ng, run_master_detail_ng
1111
from data.templates import Template
1212
from products.nativescript.tns import Tns
@@ -61,22 +61,27 @@ def test_300_run_android_bundle_aot(self):
6161
def test_300_run_ios_bundle_aot(self):
6262
sync_master_detail_ng(self.app_name, Platform.IOS, self.sim, aot=True)
6363

64+
@unittest.skip('Ignore because of https://github.com/NativeScript/nativescript-ui-feedback/issues/1297')
6465
def test_310_run_android_bundle_uglify(self):
6566
sync_master_detail_ng(self.app_name, Platform.ANDROID, self.emu, uglify=True)
6667

68+
@unittest.skip('Ignore because of https://github.com/NativeScript/nativescript-ui-feedback/issues/1297')
6769
@unittest.skipIf(Settings.HOST_OS != OSType.OSX, 'iOS tests can be executed only on macOS.')
6870
def test_310_run_ios_bundle_uglify(self):
6971
sync_master_detail_ng(self.app_name, Platform.IOS, self.sim, uglify=True)
7072

73+
@unittest.skip('Ignore because of https://github.com/NativeScript/nativescript-ui-feedback/issues/1297')
7174
@unittest.skipIf(Settings.HOST_OS == OSType.WINDOWS, 'temporary skip on windows')
7275
# TODO: remove skip when https://github.com/NativeScript/nativescript-dev-webpack/issues/1021 fixed
7376
def test_320_run_android_bundle_aot_and_uglify(self):
7477
sync_master_detail_ng(self.app_name, Platform.ANDROID, self.emu, aot=True, uglify=True)
7578

79+
@unittest.skip('Ignore because of https://github.com/NativeScript/nativescript-ui-feedback/issues/1297')
7680
@unittest.skipIf(Settings.HOST_OS != OSType.OSX, 'iOS tests can be executed only on macOS.')
7781
def test_320_run_ios_bundle_aot_and_uglify(self):
7882
sync_master_detail_ng(self.app_name, Platform.IOS, self.sim, aot=True, uglify=True)
7983

84+
@unittest.skip('Ignore because of https://github.com/NativeScript/nativescript-ui-feedback/issues/1297')
8085
def test_330_run_android_release_snapshot_aot_and_uglify(self):
8186
run_master_detail_ng(self.app_name, Platform.ANDROID, self.emu, aot=True, uglify=True,
8287
release=True, snapshot=True)

0 commit comments

Comments
 (0)