Skip to content

chore: ignore master details ng tests because of issue #429

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
Nov 8, 2019
Merged
Changes from 1 commit
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
7 changes: 6 additions & 1 deletion tests/cli/run/templates/master_detail_ng_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
from core.enums.os_type import OSType
from core.enums.platform_type import Platform
from core.settings import Settings
from core.utils.file_utils import Folder
from core.utils.docker import Docker
from core.utils.file_utils import Folder
from data.sync.master_details_ng import sync_master_detail_ng, run_master_detail_ng
from data.templates import Template
from products.nativescript.tns import Tns
Expand Down Expand Up @@ -61,22 +61,27 @@ def test_300_run_android_bundle_aot(self):
def test_300_run_ios_bundle_aot(self):
sync_master_detail_ng(self.app_name, Platform.IOS, self.sim, aot=True)

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

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

@unittest.skip('Ignore because of https://github.com/NativeScript/nativescript-ui-feedback/issues/1297')
@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)

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

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