Skip to content

Commit 1648047

Browse files
author
Dylan Huang
committed
add ecs tests
1 parent a32af57 commit 1648047

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,7 @@ jobs:
110110
--ignore=tests/pytest/test_svgbench.py \
111111
--ignore=tests/pytest/test_livesvgbench.py \
112112
--ignore=tests/remote_server/test_remote_fireworks_propagate_status.py \
113+
--ignore=tests/logging/test_elasticsearch_direct_http_handler.py \
113114
--ignore=eval_protocol/benchmarks/ \
114115
--cov=eval_protocol --cov-append --cov-report=xml --cov-report=term-missing -v --durations=10
115116

.github/workflows/remote-rollout-processor-propagate-status-test.yml renamed to .github/workflows/elasticsearch-tests.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: RemoteRolloutProcessor Propagate Status Test
1+
name: Elasticsearch Tests
22

33
on:
44
push:
@@ -13,8 +13,8 @@ on:
1313
workflow_dispatch: # Allow manual triggering
1414

1515
jobs:
16-
remote-rollout-processor-propagate-status-smoke-test:
17-
name: Fireworks Propagate Status Smoke Test
16+
elasticsearch-tests:
17+
name: Elasticsearch Integration Tests
1818
runs-on: ubuntu-latest
1919

2020
steps:
@@ -36,10 +36,14 @@ jobs:
3636
- name: Install the project
3737
run: uv sync --locked --all-extras --dev
3838

39-
- name: Run RemoteRolloutProcessor Propagate Status Smoke Test
39+
- name: Run Elasticsearch Tests
4040
env:
4141
FIREWORKS_API_KEY: ${{ secrets.FIREWORKS_API_KEY }}
4242
PYTHONWARNINGS: "ignore::DeprecationWarning,ignore::RuntimeWarning"
4343
run: |
44+
# Run Elasticsearch direct HTTP handler tests
45+
uv run pytest tests/logging/test_elasticsearch_direct_http_handler.py -v --tb=short
46+
47+
# Run RemoteRolloutProcessor Propagate Status Smoke Test (also uses Elasticsearch)
4448
uv run pytest tests/remote_server/test_remote_fireworks_propagate_status.py::test_remote_rollout_and_fetch_fireworks_propagate_status \
4549
-v --tb=short

0 commit comments

Comments
 (0)