Skip to content

Commit 2b8515b

Browse files
committed
fix filter casing
1 parent 3872397 commit 2b8515b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/e2e-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
8181
run-tests:
8282
runs-on: ubuntu-latest
83-
needs: deploy-stack
83+
needs: [deploy-stack,deploy-aot-stack]
8484
steps:
8585
- name: Checkout code
8686
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
@@ -100,12 +100,12 @@ jobs:
100100
- name: Run Core Tests
101101
run: |
102102
cd libraries/tests/e2e/functions/core
103-
dotnet test --Filter Category!=AOT
103+
dotnet test --filter Category!=AOT
104104
105105
- name: Run Core AOT Tests
106106
run: |
107107
cd libraries/tests/e2e/functions/core
108-
dotnet test --Filter Category=AOT
108+
dotnet test --filter Category=AOT
109109
110110
destroy-stack:
111111
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)