Skip to content

Commit

Permalink
e2e test job updates (#92)
Browse files Browse the repository at this point in the history
  • Loading branch information
mieciu authored May 13, 2024
1 parent 9f3396d commit 7b6a988
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions .github/workflows/e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,14 @@ jobs:
timeout-minutes: 6
run: until [ "$(curl -s -o /dev/null -w "%{http_code}" localhost:9200)" = "200" ]; do sleep 3; done

- name: Wait until ClickHouse is up
timeout-minutes: 6
run: until [ "$(curl -s -o /dev/null -w "%{http_code}" localhost:8123)" = "200" ]; do sleep 3; done

- name: Wait until Quesma is up ('/' is call routed to Elasticsearch)
timeout-minutes: 6
run: until [ "$(curl -s -o /dev/null -w "%{http_code}" localhost:8080)" = "200" ]; do sleep 3; done

- name: Run e2e tests
working-directory: quesma
run: go test --tags=integration -v ./...
Expand Down
2 changes: 1 addition & 1 deletion docker/quesma/config/ci-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ indexes:
logs-generic-default:
enabled: true
fullTextFields: [ "message" ]
windows_logs:
windows_logs: # Used for EQL e2e tests
enabled: true

0 comments on commit 7b6a988

Please sign in to comment.