Skip to content

Commit

Permalink
Replaced bash e2e test with golang e2e test
Browse files Browse the repository at this point in the history
Signed-off-by: nicklesimba <[email protected]>
  • Loading branch information
nicklesimba committed Apr 12, 2022
1 parent 014a4ec commit 49a69bb
Show file tree
Hide file tree
Showing 6 changed files with 479 additions and 305 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,10 +83,10 @@ jobs:
- name: Clear test-cache
run: go clean -testcache

- name: Execute E2E tests
run: NUMBER_OF_THRASH_ITER=20 FILL_PERCENT_CAPACITY=20 ./hack/e2e-test.sh --number-of-compute $NUMBER_OF_COMPUTE_NODES

- name: Execute golang based E2E tests
run: pushd e2e; go test -v . ; popd
env:
KUBECONFIG: /home/runner/.kube/config
NUMBER_OF_THRASH_ITER: 20
FILL_PERCENT_CAPACITY: 20
run: pushd e2e; go test -v . -timeout 1h; popd

Loading

0 comments on commit 49a69bb

Please sign in to comment.