Skip to content

Commit

Permalink
add testim legacy tests (#937)
Browse files Browse the repository at this point in the history
  • Loading branch information
sgalsaleh committed Aug 12, 2020
1 parent cfb16f9 commit 1e71ebd
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion .github/workflows/build-test.yaml
Expand Up @@ -114,6 +114,23 @@ jobs:

## testim tests

- name: prepare legacy tests
run: |
./bin/kots \
install qakots/github-actions \
--port-forward=false \
--namespace legacy \
--shared-password password \
--kotsadm-registry ttl.sh \
--kotsadm-namespace automated-${{ github.run_id }} \
--kotsadm-tag 2h
- name: execute legacy tests
run: |
./bin/kots admin-console -n legacy &
ADMIN_CONSOLE_PID=$!
testim --token ${{ secrets.TESTIM_ACCESS_TOKEN }} --project ${{ secrets.TESTIM_PROJECT_ID }} --grid "Testim-grid" --report-file testim-report.xml --suite legacy --tunnel --tunnel-port 8800
kill $ADMIN_CONSOLE_PID
# - name: prepare cluster-admin online install
# run: |
# ./bin/kots \
Expand All @@ -129,7 +146,7 @@ jobs:
# ./bin/kots admin-console -n cluster-admin &
# ADMIN_CONSOLE_PID=$!
# testim --token ${{ secrets.TESTIM_ACCESS_TOKEN }} --project ${{ secrets.TESTIM_PROJECT_ID }} --grid "Testim-grid" --report-file testim-report.xml --suite alpha --tunnel --tunnel-port 8800
# kill $ADMIN_CONSOLE_PID
# kill $ADMIN_CONSOLE_PID

- name: prepare minimal-rbac online install
run: |
Expand Down

0 comments on commit 1e71ebd

Please sign in to comment.