forked from oliver006/elasticsearch-test-data
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Leo Park
committed
Dec 3, 2024
1 parent
e915c68
commit 7868e4f
Showing
2 changed files
with
42 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
name: CI | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
|
||
jobs: | ||
opensearch_tests: | ||
runs-on: ubuntu-latest | ||
services: | ||
es: | ||
image: opensearchproject/opensearch:2 | ||
ports: | ||
- 9200:9200 | ||
options: >- | ||
--env discovery.type=single-node | ||
--env "DISABLE_SECURITY_PLUGIN=true" | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: 3.12 | ||
|
||
- name: Install dependencies | ||
run: | | ||
pip install --upgrade pip | ||
pip install -r requirements.txt | ||
- name: Wait for Opensearch | ||
run: | | ||
sleep 10 | ||
curl -s http://localhost:9200 | ||
- name: Run tests | ||
run: python3 search_test.py --count=2000 --search_db_url=http://localhost:9200 |