Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 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
4 changes: 4 additions & 0 deletions .github/workflows/test-all-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -292,6 +292,10 @@ jobs:
echo "No skill report found"
fi

- name: Generate quality report
if: always()
run: npm run quality-report || true

- name: Export report
if: always()
id: export-report
Expand Down
5 changes: 5 additions & 0 deletions tests/microsoft-foundry/resource/create/integration.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,13 @@
* Tests the skill"s behavior when invoked with real scenarios
*/

import * as path from "path";
import { fileURLToPath } from "url";
import { loadSkill, type LoadedSkill } from "../../../utils/skill-loader";

const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);

const SKILL_NAME = "microsoft-foundry";

describe(`${SKILL_NAME}_resource-create - Integration Tests`, () => {
Expand Down
1 change: 1 addition & 0 deletions tests/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
"coverage:grid": "node scripts/generate-coverage-grid.js",
"report": "npx tsx scripts/generate-test-reports.ts",
"results": "node scripts/show-test-results.js",
"quality-report": "node scripts/generate-quality-report.js",
"update:snapshots": "node scripts/update-snapshots.js",
"typecheck": "tsc --noEmit",
"lint": "eslint",
Expand Down
Loading
Loading