diff --git a/tests/cli/run/templates/master_detail_ng_tests.py b/tests/cli/run/templates/master_detail_ng_tests.py index 54c20b1c..02ed8024 100644 --- a/tests/cli/run/templates/master_detail_ng_tests.py +++ b/tests/cli/run/templates/master_detail_ng_tests.py @@ -45,6 +45,8 @@ def test_100_run_android(self): def test_100_run_ios(self): sync_master_detail_ng(self.app_name, Platform.IOS, self.sim) + @unittest.skipIf(Settings.HOST_OS == OSType.WINDOWS, 'temporary skip on windows') + # TODO: remove skip when https://github.com/NativeScript/nativescript-dev-webpack/issues/1021 fixed def test_300_run_android_bundle_aot(self): sync_master_detail_ng(self.app_name, Platform.ANDROID, self.emu, aot=True) @@ -59,6 +61,8 @@ def test_310_run_android_bundle_uglify(self): def test_310_run_ios_bundle_uglify(self): sync_master_detail_ng(self.app_name, Platform.IOS, self.sim, uglify=True) + @unittest.skipIf(Settings.HOST_OS == OSType.WINDOWS, 'temporary skip on windows') + # TODO: remove skip when https://github.com/NativeScript/nativescript-dev-webpack/issues/1021 fixed def test_320_run_android_bundle_aot_and_uglify(self): sync_master_detail_ng(self.app_name, Platform.ANDROID, self.emu, aot=True, uglify=True)