@@ -24,61 +24,61 @@ jobs:
24
24
run : |
25
25
dotnet test --no-restore --verbosity normal --filter "Category!=Acceptance"
26
26
27
- acceptance_tests :
28
- runs-on : ubuntu-latest
29
- steps :
30
- - uses : actions/checkout@main
31
- - name : Setup .NET
32
- uses : actions/setup-dotnet@main
33
- with :
34
- dotnet-version : |
35
- 8.0.x
36
- - name : Install dependencies
37
- run : dotnet restore
38
-
39
- - name : Build
40
- run : |
41
- dotnet build --configuration Release --no-restore
42
-
43
- - name : Prune databases
44
- working-directory : ./tools/CosmosTestHelper
45
- env :
46
- CosmosConnectionString : ${{ secrets.COSMOS_INTEGRATION_TEST_CONNECTION_STRING }}
47
- run : dotnet run
48
-
49
- - name : Test Functions
50
- env :
51
- CosmosConnectionString : ${{ secrets.COSMOS_INTEGRATION_TEST_CONNECTION_STRING }}
52
- run : |
53
- dotnet test --no-restore --verbosity normal --filter "Category=Acceptance&Type!=Container&Type!=CosmosEventSourcing"
54
-
55
- - name : Prune databases
56
- working-directory : ./tools/CosmosTestHelper
57
- env :
58
- CosmosConnectionString : ${{ secrets.COSMOS_INTEGRATION_TEST_CONNECTION_STRING }}
59
- run : dotnet run
60
-
61
- - name : Test Cosmos Event Sourcing
62
- env :
63
- CosmosConnectionString : ${{ secrets.COSMOS_INTEGRATION_TEST_CONNECTION_STRING }}
64
- run : |
65
- dotnet test --no-restore --verbosity normal --filter "Category=Acceptance&Type=CosmosEventSourcing"
66
-
67
- - name : Prune databases
68
- working-directory : ./tools/CosmosTestHelper
69
- env :
70
- CosmosConnectionString : ${{ secrets.COSMOS_INTEGRATION_TEST_CONNECTION_STRING }}
71
- run : dotnet run
72
-
73
- - name : Test Container Creation
74
- env :
75
- CosmosConnectionString : ${{ secrets.COSMOS_INTEGRATION_TEST_CONNECTION_STRING }}
76
- run : |
77
- dotnet test --no-restore --verbosity normal --filter "Category=Acceptance&Type=Container"
27
+ # acceptance_tests:
28
+ # runs-on: ubuntu-latest
29
+ # steps:
30
+ # - uses: actions/checkout@main
31
+ # - name: Setup .NET
32
+ # uses: actions/setup-dotnet@main
33
+ # with:
34
+ # dotnet-version: |
35
+ # 8.0.x
36
+ # - name: Install dependencies
37
+ # run: dotnet restore
38
+
39
+ # - name: Build
40
+ # run: |
41
+ # dotnet build --configuration Release --no-restore
42
+
43
+ # - name: Prune databases
44
+ # working-directory: ./tools/CosmosTestHelper
45
+ # env:
46
+ # CosmosConnectionString: ${{ secrets.COSMOS_INTEGRATION_TEST_CONNECTION_STRING }}
47
+ # run: dotnet run
48
+
49
+ # - name: Test Functions
50
+ # env:
51
+ # CosmosConnectionString: ${{ secrets.COSMOS_INTEGRATION_TEST_CONNECTION_STRING }}
52
+ # run: |
53
+ # dotnet test --no-restore --verbosity normal --filter "Category=Acceptance&Type!=Container&Type!=CosmosEventSourcing"
54
+
55
+ # - name: Prune databases
56
+ # working-directory: ./tools/CosmosTestHelper
57
+ # env:
58
+ # CosmosConnectionString: ${{ secrets.COSMOS_INTEGRATION_TEST_CONNECTION_STRING }}
59
+ # run: dotnet run
60
+
61
+ # - name: Test Cosmos Event Sourcing
62
+ # env:
63
+ # CosmosConnectionString: ${{ secrets.COSMOS_INTEGRATION_TEST_CONNECTION_STRING }}
64
+ # run: |
65
+ # dotnet test --no-restore --verbosity normal --filter "Category=Acceptance&Type=CosmosEventSourcing"
66
+
67
+ # - name: Prune databases
68
+ # working-directory: ./tools/CosmosTestHelper
69
+ # env:
70
+ # CosmosConnectionString: ${{ secrets.COSMOS_INTEGRATION_TEST_CONNECTION_STRING }}
71
+ # run: dotnet run
72
+
73
+ # - name: Test Container Creation
74
+ # env:
75
+ # CosmosConnectionString: ${{ secrets.COSMOS_INTEGRATION_TEST_CONNECTION_STRING }}
76
+ # run: |
77
+ # dotnet test --no-restore --verbosity normal --filter "Category=Acceptance&Type=Container"
78
78
79
79
deploy :
80
80
needs :
81
- - acceptance_tests
81
+ # - acceptance_tests
82
82
- unit_tests
83
83
if : github.event.base_ref == 'refs/heads/main'
84
84
runs-on : ubuntu-latest
0 commit comments