Skip to content

fix: temporary skip test on windows #321

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Aug 15, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions tests/cli/run/templates/master_detail_ng_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand All @@ -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)

Expand Down