[CI]Fixed the spell check function in typos.toml (#6753)
### What this PR does / why we need it?
The incorrect regular expression syntax `.*[UE4M3|ue4m3].*` actually
ignores all words containing any of the following characters: `u, e, 4,
m, 3, |`
```yaml
extend-ignore-identifiers-re = [".*Unc.*", ".*_thw",
".*UE8M0.*", ".*[UE4M3|ue4m3].*", ".*eles.*", ".*fo.*", ".*ba.*",
".*ot.*", ".*[Tt]h[rR].*"]
```
===fix===>
```yaml
extend-ignore-identifiers-re = [".*Unc.*", ".*_thw",
".*UE8M0.*", ".*(UE4M3|ue4m3]).*", ".*eles.*", ".*fo.*", ".*ba.*",
".*ot.*", ".*[Tt]h[rR].*"]
```
### Does this PR introduce _any_ user-facing change?
### How was this patch tested?
- vLLM version: v0.15.0
- vLLM main:
9562912cea
Signed-off-by: MrZ20 <2609716663@qq.com>
This commit is contained in:
@@ -10,7 +10,7 @@ import yaml
|
||||
# isort: off
|
||||
from tests.e2e.nightly.multi_node.scripts.utils import (
|
||||
CONFIG_BASE_PATH, DEFAULT_SERVER_PORT, get_all_ipv4, get_cluster_ips,
|
||||
get_net_interface, setup_logger, get_avaliable_port)
|
||||
get_net_interface, setup_logger, get_available_port)
|
||||
# isort: on
|
||||
setup_logger()
|
||||
logger = logging.getLogger(__name__)
|
||||
@@ -202,7 +202,7 @@ class MultiNodeConfig:
|
||||
master_ip = (self.disagg_cfg.master_ip_for_node(
|
||||
self.cur_index, self.nodes)
|
||||
if self.disagg_cfg else self.nodes[0].ip)
|
||||
self.proxy_port = get_avaliable_port()
|
||||
self.proxy_port = get_available_port()
|
||||
|
||||
self.envs = DistEnvBuilder(
|
||||
cur_node=self.cur_node,
|
||||
|
||||
Reference in New Issue
Block a user