File tree 2 files changed +6
-5
lines changed
2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -138,6 +138,7 @@ steps:
138
138
- vllm/core/
139
139
- tests/distributed/test_utils
140
140
- tests/distributed/test_pynccl
141
+ - tests/distributed/test_events
141
142
- tests/spec_decode/e2e/test_integration_dist_tp4
142
143
- tests/compile/test_basic_correctness
143
144
- examples/offline_inference/rlhf.py
@@ -156,6 +157,7 @@ steps:
156
157
- pytest -v -s distributed/test_utils.py
157
158
- pytest -v -s compile/test_basic_correctness.py
158
159
- pytest -v -s distributed/test_pynccl.py
160
+ - pytest -v -s distributed/test_events.py
159
161
- pytest -v -s spec_decode/e2e/test_integration_dist_tp4.py
160
162
# TODO: create a dedicated test section for multi-GPU example tests
161
163
# when we have multiple distributed example tests
Original file line number Diff line number Diff line change @@ -119,13 +119,12 @@ def test_topic_filtering(publisher_config):
119
119
"""
120
120
publisher_config .replay_endpoint = None
121
121
122
- cfg = publisher_config .model_copy ()
123
- cfg .topic = "foo"
124
- pub = EventPublisherFactory .create (cfg )
122
+ publisher_config .topic = "foo"
123
+ pub = EventPublisherFactory .create (publisher_config )
125
124
126
125
from .conftest import MockSubscriber
127
- sub_foo = MockSubscriber (cfg .endpoint , None , "foo" )
128
- sub_bar = MockSubscriber (cfg .endpoint , None , "bar" )
126
+ sub_foo = MockSubscriber (publisher_config .endpoint , None , "foo" )
127
+ sub_bar = MockSubscriber (publisher_config .endpoint , None , "bar" )
129
128
130
129
try :
131
130
time .sleep (0.1 )
You can’t perform that action at this time.
0 commit comments