We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3872397 commit 2b8515bCopy full SHA for 2b8515b
.github/workflows/e2e-tests.yml
@@ -80,7 +80,7 @@ jobs:
80
81
run-tests:
82
runs-on: ubuntu-latest
83
- needs: deploy-stack
+ needs: [deploy-stack,deploy-aot-stack]
84
steps:
85
- name: Checkout code
86
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
@@ -100,12 +100,12 @@ jobs:
100
- name: Run Core Tests
101
run: |
102
cd libraries/tests/e2e/functions/core
103
- dotnet test --Filter Category!=AOT
+ dotnet test --filter Category!=AOT
104
105
- name: Run Core AOT Tests
106
107
108
- dotnet test --Filter Category=AOT
+ dotnet test --filter Category=AOT
109
110
destroy-stack:
111
0 commit comments