@@ -1223,15 +1223,13 @@ class TestBuildCommand_Dotnet_cli_package(BuildIntegBase):
1223
1223
1224
1224
@parameterized .expand (
1225
1225
[
1226
- ("dotnetcore3.1" , "Dotnetcore3.1" , None ),
1227
1226
("dotnet6" , "Dotnet6" , None ),
1228
- ("dotnetcore3.1" , "Dotnetcore3.1" , "debug" ),
1229
1227
("dotnet6" , "Dotnet6" , "debug" ),
1230
1228
("provided.al2" , "Dotnet7" , None ),
1231
1229
]
1232
1230
)
1233
1231
@pytest .mark .flaky (reruns = 3 )
1234
- def test_dotnetcore_in_process (self , runtime , code_uri , mode , architecture = "x86_64" ):
1232
+ def test_dotnet_in_process (self , runtime , code_uri , mode , architecture = "x86_64" ):
1235
1233
# dotnet7 requires docker to build the function
1236
1234
if code_uri == "Dotnet7" and (SKIP_DOCKER_TESTS or SKIP_DOCKER_BUILD ):
1237
1235
self .skipTest (SKIP_DOCKER_MESSAGE )
@@ -1294,9 +1292,7 @@ def test_dotnetcore_in_process(self, runtime, code_uri, mode, architecture="x86_
1294
1292
1295
1293
@parameterized .expand (
1296
1294
[
1297
- ("dotnetcore3.1" , "Dotnetcore3.1" , None ),
1298
1295
("dotnet6" , "Dotnet6" , None ),
1299
- ("dotnetcore3.1" , "Dotnetcore3.1" , "debug" ),
1300
1296
("dotnet6" , "Dotnet6" , "debug" ),
1301
1297
# force to run tests on arm64 machines may cause dotnet7 test failing
1302
1298
# because Native AOT Lambda functions require the host and lambda architectures to match
@@ -1305,7 +1301,7 @@ def test_dotnetcore_in_process(self, runtime, code_uri, mode, architecture="x86_
1305
1301
)
1306
1302
@skipIf (SKIP_DOCKER_TESTS or SKIP_DOCKER_BUILD , SKIP_DOCKER_MESSAGE )
1307
1303
@pytest .mark .flaky (reruns = 3 )
1308
- def test_dotnetcore_in_container_mount_with_write_explicit (self , runtime , code_uri , mode , architecture = "x86_64" ):
1304
+ def test_dotnet_in_container_mount_with_write_explicit (self , runtime , code_uri , mode , architecture = "x86_64" ):
1309
1305
overrides = {
1310
1306
"Runtime" : runtime ,
1311
1307
"CodeUri" : code_uri ,
@@ -1368,9 +1364,7 @@ def test_dotnetcore_in_container_mount_with_write_explicit(self, runtime, code_u
1368
1364
1369
1365
@parameterized .expand (
1370
1366
[
1371
- ("dotnetcore3.1" , "Dotnetcore3.1" , None ),
1372
1367
("dotnet6" , "Dotnet6" , None ),
1373
- ("dotnetcore3.1" , "Dotnetcore3.1" , "debug" ),
1374
1368
("dotnet6" , "Dotnet6" , "debug" ),
1375
1369
# force to run tests on arm64 machines may cause dotnet7 test failing
1376
1370
# because Native AOT Lambda functions require the host and lambda architectures to match
@@ -1379,7 +1373,7 @@ def test_dotnetcore_in_container_mount_with_write_explicit(self, runtime, code_u
1379
1373
)
1380
1374
@skipIf (SKIP_DOCKER_TESTS or SKIP_DOCKER_BUILD , SKIP_DOCKER_MESSAGE )
1381
1375
@pytest .mark .flaky (reruns = 3 )
1382
- def test_dotnetcore_in_container_mount_with_write_interactive (
1376
+ def test_dotnet_in_container_mount_with_write_interactive (
1383
1377
self ,
1384
1378
runtime ,
1385
1379
code_uri ,
@@ -1444,7 +1438,7 @@ def test_dotnetcore_in_container_mount_with_write_interactive(
1444
1438
)
1445
1439
self .verify_docker_container_cleanedup (runtime )
1446
1440
1447
- @parameterized .expand ([("dotnetcore3.1" , "Dotnetcore3.1" ), ( " dotnet6" , "Dotnet6" )])
1441
+ @parameterized .expand ([("dotnet6" , "Dotnet6" )])
1448
1442
@skipIf (SKIP_DOCKER_TESTS or SKIP_DOCKER_BUILD , SKIP_DOCKER_MESSAGE )
1449
1443
@pytest .mark .flaky (reruns = 3 )
1450
1444
def test_must_fail_on_container_mount_without_write_interactive (self , runtime , code_uri ):
@@ -2045,13 +2039,6 @@ class TestBuildWithDedupBuilds(DedupBuildIntegBase):
2045
2039
@parameterized .expand (
2046
2040
[
2047
2041
# in process
2048
- (
2049
- False ,
2050
- "Dotnetcore3.1" ,
2051
- "HelloWorld::HelloWorld.FirstFunction::FunctionHandler" ,
2052
- "HelloWorld::HelloWorld.SecondFunction::FunctionHandler" ,
2053
- "dotnetcore3.1" ,
2054
- ),
2055
2042
(
2056
2043
False ,
2057
2044
"Dotnet6" ,
@@ -2177,13 +2164,6 @@ class TestBuildWithCacheBuilds(CachedBuildIntegBase):
2177
2164
@parameterized .expand (
2178
2165
[
2179
2166
# in process
2180
- (
2181
- False ,
2182
- "Dotnetcore3.1" ,
2183
- "HelloWorld::HelloWorld.FirstFunction::FunctionHandler" ,
2184
- "HelloWorld::HelloWorld.SecondFunction::FunctionHandler" ,
2185
- "dotnetcore3.1" ,
2186
- ),
2187
2167
(
2188
2168
False ,
2189
2169
"Dotnet6" ,
@@ -2366,13 +2346,6 @@ class TestParallelBuilds(DedupBuildIntegBase):
2366
2346
@parameterized .expand (
2367
2347
[
2368
2348
# in process
2369
- (
2370
- False ,
2371
- "Dotnetcore3.1" ,
2372
- "HelloWorld::HelloWorld.FirstFunction::FunctionHandler" ,
2373
- "HelloWorld::HelloWorld.SecondFunction::FunctionHandler" ,
2374
- "dotnetcore3.1" ,
2375
- ),
2376
2349
(
2377
2350
False ,
2378
2351
"Dotnet6" ,
0 commit comments