File tree Expand file tree Collapse file tree 2 files changed +9
-4
lines changed
Expand file tree Collapse file tree 2 files changed +9
-4
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 1- name : RemoteRolloutProcessor Propagate Status Test
1+ name : Elasticsearch Tests
22
33on :
44 push :
1313 workflow_dispatch : # Allow manual triggering
1414
1515jobs :
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
You can’t perform that action at this time.
0 commit comments