Skip to content

Commit

Permalink
Move trino tests to tests subdirectory
Browse files Browse the repository at this point in the history
  • Loading branch information
willmostly committed Dec 3, 2024
1 parent 9ae2f53 commit 0d801cc
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 14 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci-cd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:

test:
runs-on: ubuntu-latest
name: test ${{ matrix.label }}
name: trino-test ${{ matrix.label }}
strategy:
fail-fast: false
matrix:
Expand All @@ -54,12 +54,12 @@ jobs:
uses: helm/[email protected]
with:
version: v0.24.0
- name: Run trino tests
run: ./test.sh ${{ matrix.args }}
- name: Run tests
run: ./tests/trino/test.sh ${{ matrix.args }}

test-gateway:
runs-on: ubuntu-latest
name: test ${{ matrix.label }}
name: test gateway ${{ matrix.label }}
strategy:
fail-fast: false
matrix:
Expand Down
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
.idea/*
cert.key
cert.crt
tests/trino/cert.key
tests/trino/cert.crt
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
16 changes: 8 additions & 8 deletions test.sh → tests/trino/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ declare -A testCases=(
)

declare -A testCaseCharts=(
[default]="charts/trino"
[single_node]="charts/trino"
[complete_values]="charts/trino"
[overrides]="charts/trino"
[access_control_properties_values]="charts/trino"
[exchange_manager_values]="charts/trino"
[graceful_shutdown]="charts/trino"
[resource_groups_properties]="charts/trino"
[default]="../../charts/trino"
[single_node]="../../charts/trino"
[complete_values]="../../charts/trino"
[overrides]="../../charts/trino"
[access_control_properties_values]="../../charts/trino"
[exchange_manager_values]="../../charts/trino"
[graceful_shutdown]="../../charts/trino"
[resource_groups_properties]="../../charts/trino"
)

function join_by {
Expand Down

0 comments on commit 0d801cc

Please sign in to comment.