Skip to content

Commit

Permalink
Remove server integration tests from Tuist config
Browse files Browse the repository at this point in the history
  • Loading branch information
AnthonyMDev committed Sep 30, 2024
1 parent 6a625db commit 520a173
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 94 deletions.
4 changes: 1 addition & 3 deletions Project.swift
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,13 @@ let project = Project(
.apolloTests(),
.apolloPaginationTests(),
.apolloPerformanceTests(),
.apolloServerIntegrationTests(),
.apolloCodegenTests(),
.codegenCLITests()
],
schemes: [
.apolloCodegenTests(),
.apolloPerformanceTests(),
.apolloPaginationTests(),
.apolloServerIntegrationTests(),
.apolloPaginationTests(),
.apolloTests(),
.codegenCLITests()
],
Expand Down
27 changes: 0 additions & 27 deletions Tests/TestPlans/Apollo-IntegrationTestPlan.xctestplan

This file was deleted.

9 changes: 1 addition & 8 deletions Tuist/ProjectDescriptionHelpers/Enums/ApolloTarget.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ public enum ApolloTarget {
case apolloInternalTestHelpers
case apolloPaginationTests
case apolloPerformanceTests
case apolloServerIntegrationTests
case apolloTests
case apolloWrapper
case codegenCLITests
Expand All @@ -34,8 +33,6 @@ public enum ApolloTarget {
return "ApolloPaginationTests"
case .apolloPerformanceTests:
return "ApolloPerformanceTests"
case .apolloServerIntegrationTests:
return "ApolloServerIntegrationTests"
case .apolloTests:
return "ApolloTests"
case .apolloWrapper:
Expand Down Expand Up @@ -69,8 +66,6 @@ public enum ApolloTarget {
return "Apollo-Target-PaginationTests"
case .apolloPerformanceTests:
return "Apollo-Target-PerformanceTests"
case .apolloServerIntegrationTests:
return "Apollo-Target-ServerIntegrationTests"
case .apolloTests:
return "Apollo-Target-Tests"
case .apolloWrapper:
Expand All @@ -97,7 +92,6 @@ public enum ApolloTarget {
.apolloInternalTestHelpers,
.apolloPaginationTests,
.apolloPerformanceTests,
.apolloServerIntegrationTests,
.apolloTests,
.apolloWrapper,
.codegenCLITests,
Expand All @@ -119,8 +113,7 @@ public enum ApolloTarget {
.uploadAPI:
return DeploymentTargets(macOS: "10.15")
case .apolloInternalTestHelpers,
.apolloPerformanceTests,
.apolloServerIntegrationTests,
.apolloPerformanceTests,
.apolloTests,
.apolloPaginationTests:
return DeploymentTargets(macOS: "12.0")
Expand Down
5 changes: 1 addition & 4 deletions Tuist/ProjectDescriptionHelpers/Enums/ApolloTestPlan.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@ enum ApolloTestPlan {
case ciTest
case codegenTest
case codegenCITest
case codegenCLITest
case integrationTest
case codegenCLITest
case paginationTest
case performanceTest
case unitTest
Expand All @@ -21,8 +20,6 @@ enum ApolloTestPlan {
return Path("Tests/TestPlans/Apollo-Codegen-CITestPlan.xctestplan")
case .codegenCLITest:
return Path("Tests/TestPlans/CodegenCLITestPlan.xctestplan")
case .integrationTest:
return Path("Tests/TestPlans/Apollo-IntegrationTestPlan.xctestplan")
case .paginationTest:
return Path("Tests/TestPlans/Apollo-PaginationTestPlan.xctestplan")
case .performanceTest:
Expand Down

This file was deleted.

0 comments on commit 520a173

Please sign in to comment.