@@ -129,6 +129,7 @@ def test_203_Platform_Add_iOS_CustomVersion(self):
129
129
if ('TESTRUN' in os .environ ) and (not "SMOKE" in os .environ ['TESTRUN' ]):
130
130
assert CheckFilesExists ('TNS_App/platforms/ios' , 'platform_ios_1.0.0.txt' )
131
131
132
+ @unittest .skip ("Skip until fixed: https://github.com/NativeScript/nativescript-cli/issues/772" )
132
133
def test_204_Platform_Update_iOS (self ):
133
134
CreateProject (projName = "TNS_App" )
134
135
output = PlatformAdd (
platform = "[email protected] " ,
path = "TNS_App" )
@@ -157,7 +158,8 @@ def test_204_Platform_Update_iOS(self):
157
158
assert CheckFilesExists ('TNS_App/platforms/ios' , 'platform_ios_1.2.0.txt' )
158
159
Build (platform = "ios" , path = "TNS_App" )
159
160
160
- def test_206_Platform_Update_iOS_ToOlderVersion (self ):
161
+ @unittest .skip ("Skip due to build failure. Probably related: https://github.com/NativeScript/nativescript-cli/issues/785" )
162
+ def test_206_Platform_Downgrade_iOS_ToOlderVersion (self ):
161
163
CreateProjectAndAddPlatform (
projName = "TNS_App" ,
platform = "[email protected] " )
162
164
output = runAUT ("cat TNS_App/package.json" )
163
165
assert ("\" version\" : \" 1.2.0\" " in output )
@@ -178,7 +180,7 @@ def test_206_Platform_Update_iOS_ToOlderVersion(self):
178
180
assert ("\" version\" : \" 1.1.0\" " in output )
179
181
Build (platform = "ios" , path = "TNS_App" )
180
182
181
- @unittest .skip ("Execute when platform update command starts respecting --frameworkPath. " )
183
+ @unittest .skip ("Execute when platform update command starts respecting --frameworkPath: https://github.com/NativeScript/nativescript-cli/issues/743 " )
182
184
def test_207_Platform_Update_iOS_ToLatestVersion (self ):
183
185
CreateProjectAndAddPlatform (
projName = "TNS_App" ,
platform = "[email protected] " )
184
186
output = runAUT ("cat TNS_App/package.json" )
@@ -192,7 +194,8 @@ def test_207_Platform_Update_iOS_ToLatestVersion(self):
192
194
assert ("Successfully updated to version 1.2.0" in output )
193
195
Build (platform = "ios" , path = "TNS_App" )
194
196
195
- def test_208_Platform_Update_iOS_FromLatestVersion (self ):
197
+ @unittest .skip ("Skip until fixed: https://github.com/NativeScript/nativescript-cli/issues/772" )
198
+ def test_208_Platform_Downgrade_iOS_FromLatestVersion (self ):
196
199
CreateProjectAndAddPlatform (projName = "TNS_App" , platform = "ios" , frameworkPath = iosRuntimePath )
197
200
198
201
output = runAUT ("cat TNS_App/package.json" )
0 commit comments