Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: add ydb test cases #6681

Merged
merged 4 commits into from
Jul 20, 2022
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/dev-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ jobs:
- uses: ./.github/actions/test_stateless_cluster_linux

test_sqllogic_standalone_linux:
timeout-minutes: 10
timeout-minutes: 20
runs-on: [self-hosted, X64, Linux, development]
needs: build_gnu
steps:
Expand Down
5 changes: 4 additions & 1 deletion tests/logictest/complete.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,16 @@ def run(source_file, target_path="."):
# print(query_options)
# print(http_results)

if "query" not in statement[0]:
if "query" not in statement[0] or "skipped" in statement[0]:
pass
elif len(http_results) == 0:
out.write(
"-- auto generated, statement query get no results\n"
) # manual check
statement[0] = "statement query skipped\n"
statement.append("----\n")
statement.append("Add results here\n")
statement.append("\n")
else:
statement.append("----\n")
statement.append(http_results)
Expand Down
Loading