mirror of
https://github.com/Quad4-Software/MeshChatX.git
synced 2026-08-18 09:49:09 -04:00
chore: format
This commit is contained in:
parent
b0d47b9ece
commit
9b91c9ac80
3 changed files with 4 additions and 7 deletions
BIN
meshchatx.rsm
BIN
meshchatx.rsm
Binary file not shown.
|
|
@ -330,12 +330,7 @@ try {
|
|||
}
|
||||
const bakeCmdParts = pythonCmd.trim().split(/\s+/).filter(Boolean);
|
||||
const bakeCmd = bakeCmdParts[0];
|
||||
let bakeArgs = [
|
||||
...bakeCmdParts.slice(1),
|
||||
"-m",
|
||||
"meshchatx.src.backend.bake_frozen_lxst_native",
|
||||
buildDir,
|
||||
];
|
||||
let bakeArgs = [...bakeCmdParts.slice(1), "-m", "meshchatx.src.backend.bake_frozen_lxst_native", buildDir];
|
||||
let bakeSpawnCmd = bakeCmd;
|
||||
if (rosettaX64) {
|
||||
bakeSpawnCmd = "arch";
|
||||
|
|
|
|||
|
|
@ -10,7 +10,9 @@ import pytest
|
|||
from meshchatx.src.backend.bake_frozen_lxst_native import bake_lxst_filterlib
|
||||
|
||||
|
||||
def test_bake_lxst_filterlib_prunes_alien_blobs(tmp_path: Path, monkeypatch: pytest.MonkeyPatch) -> None:
|
||||
def test_bake_lxst_filterlib_prunes_alien_blobs(
|
||||
tmp_path: Path, monkeypatch: pytest.MonkeyPatch
|
||||
) -> None:
|
||||
lxst = tmp_path / "lib" / "LXST"
|
||||
lxst.mkdir(parents=True)
|
||||
(lxst / "filterlib.dll").write_bytes(b"win")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue