Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
"runtime:test-router": "corepack pnpm --filter @role-model-router/runtime-host-bridge run test:router && corepack pnpm --filter @role-model-router/trace test && corepack pnpm --filter @role-model-router/usage test && corepack pnpm run runtime:validate-routing && corepack pnpm run runtime:validate-observability",
"runtime:test-full": "corepack pnpm run runtime:test-critical && corepack pnpm run runtime:test-browser",
"build": "corepack pnpm run types:generate && corepack pnpm -r --if-present build",
"test": "corepack pnpm run test:release-workflows && corepack pnpm -r --if-present --filter=./** --filter=!@try-works/pi-role-model test && corepack pnpm --filter @try-works/pi-role-model test",
"test": "corepack pnpm run test:release-workflows && corepack pnpm -r --if-present --filter=./** --filter=!@role-model-router/runtime-host-bridge --filter=!@try-works/pi-role-model test && corepack pnpm --filter @role-model-router/runtime-host-bridge test && corepack pnpm --filter @try-works/pi-role-model test",
"test:release-workflows": "node --test scripts/ci-workflow.test.mjs scripts/build-binaries-workflow.test.mjs apps/docs-site/scripts/docs-site-deploy-workflow.test.mjs",
"test:rust": "cargo test --manifest-path role-model-router/rust/Cargo.toml --workspace",
"smoke": "corepack pnpm --filter @role-model-router/gateway-smoke exec tsx src/index.ts",
Expand Down
4 changes: 2 additions & 2 deletions scripts/ci-workflow.test.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ test("promotion guard encodes dev to stage to main with a hotfix exception", ()
assert.match(workflow, /Invalid promotion source/);
});

test("workspace tests isolate the resource-heavy Pi runtime proof", () => {
test("workspace tests serialize the resource-heavy runtime proofs", () => {
assert.match(
packageManifest.scripts.test,
/--filter=\.\/\*\* --filter=!@try-works\/pi-role-model test.*--filter @try-works\/pi-role-model test/,
/--filter=\.\/\*\* --filter=!@role-model-router\/runtime-host-bridge --filter=!@try-works\/pi-role-model test.*--filter @role-model-router\/runtime-host-bridge test.*--filter @try-works\/pi-role-model test/,
);
});
Loading