Skip to content

Commit

Permalink
Serialize all tests
Browse files Browse the repository at this point in the history
  • Loading branch information
fpseverino committed Oct 22, 2024
1 parent 4fd2980 commit 168b6d5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,6 @@ jobs:
uses: vapor/ci/.github/workflows/run-unit-tests.yml@main
with:
with_linting: true
extra_flags: --no-parallel
secrets:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
2 changes: 1 addition & 1 deletion Tests/OrdersTests/OrdersTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import Zip
struct OrdersTests {
let ordersURI = "/api/orders/v1/"

@Test("Order Generation", .serialized, arguments: [true, false])
@Test("Order Generation", arguments: [true, false])
func orderGeneration(useEncryptedKey: Bool) async throws {
try await withApp(useEncryptedKey: useEncryptedKey) { app, ordersService in
let orderData = OrderData(title: "Test Order")
Expand Down
2 changes: 1 addition & 1 deletion Tests/PassesTests/PassesTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import Zip
struct PassesTests {
let passesURI = "/api/passes/v1/"

@Test("Pass Generation", .serialized, arguments: [true, false])
@Test("Pass Generation", arguments: [true, false])
func passGeneration(useEncryptedKey: Bool) async throws {
try await withApp(useEncryptedKey: useEncryptedKey) { app, passesService in
let passData = PassData(title: "Test Pass")
Expand Down

0 comments on commit 168b6d5

Please sign in to comment.