Skip to content

Commit 5a27776

Browse files
authored
fix: temporary skip test on windows (#321)
* skip failing test on windows * fix linter
1 parent db31757 commit 5a27776

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tests/cli/run/templates/master_detail_ng_tests.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,8 @@ def test_100_run_android(self):
4545
def test_100_run_ios(self):
4646
sync_master_detail_ng(self.app_name, Platform.IOS, self.sim)
4747

48+
@unittest.skipIf(Settings.HOST_OS == OSType.WINDOWS, 'temporary skip on windows')
49+
# TODO: remove skip when https://github.com/NativeScript/nativescript-dev-webpack/issues/1021 fixed
4850
def test_300_run_android_bundle_aot(self):
4951
sync_master_detail_ng(self.app_name, Platform.ANDROID, self.emu, aot=True)
5052

@@ -59,6 +61,8 @@ def test_310_run_android_bundle_uglify(self):
5961
def test_310_run_ios_bundle_uglify(self):
6062
sync_master_detail_ng(self.app_name, Platform.IOS, self.sim, uglify=True)
6163

64+
@unittest.skipIf(Settings.HOST_OS == OSType.WINDOWS, 'temporary skip on windows')
65+
# TODO: remove skip when https://github.com/NativeScript/nativescript-dev-webpack/issues/1021 fixed
6266
def test_320_run_android_bundle_aot_and_uglify(self):
6367
sync_master_detail_ng(self.app_name, Platform.ANDROID, self.emu, aot=True, uglify=True)
6468

0 commit comments

Comments
 (0)