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
13 changes: 7 additions & 6 deletions src/resources/editor/tools/vs-code.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -8540,8 +8540,8 @@ var require_yaml_intelligence_resources = __commonJS({
icon: {
string: {
description: {
short: "Name of bootstrap icon (e.g. `github`, `twitter`, `share`)",
long: "Name of bootstrap icon (e.g. `github`, `twitter`, `share`)\nSee <https://icons.getbootstrap.com/> for a list of available icons\n"
short: "Name of bootstrap icon (e.g. `github`, `bluesky`, `share`)",
long: "Name of bootstrap icon (e.g. `github`, `bluesky`, `share`)\nSee <https://icons.getbootstrap.com/> for a list of available icons\n"
}
}
},
Expand Down Expand Up @@ -11675,7 +11675,8 @@ var require_yaml_intelligence_resources = __commonJS({
object: {
properties: {
"trace-filters": "string",
tests: "object"
tests: "object",
"tests-on-ci": "boolean"
}
}
}
Expand Down Expand Up @@ -24977,12 +24978,12 @@ var require_yaml_intelligence_resources = __commonJS({
mermaid: "%%"
},
"handlers/mermaid/schema.yml": {
_internalId: 197491,
_internalId: 197493,
type: "object",
description: "be an object",
properties: {
"mermaid-format": {
_internalId: 197483,
_internalId: 197485,
type: "enum",
enum: [
"png",
Expand All @@ -24998,7 +24999,7 @@ var require_yaml_intelligence_resources = __commonJS({
exhaustiveCompletions: true
},
theme: {
_internalId: 197490,
_internalId: 197492,
type: "anyOf",
anyOf: [
{
Expand Down

Large diffs are not rendered by default.

13 changes: 7 additions & 6 deletions src/resources/editor/tools/yaml/web-worker.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 7 additions & 6 deletions src/resources/editor/tools/yaml/yaml-intelligence-resources.json
Original file line number Diff line number Diff line change
Expand Up @@ -1512,8 +1512,8 @@
"icon": {
"string": {
"description": {
"short": "Name of bootstrap icon (e.g. `github`, `twitter`, `share`)",
"long": "Name of bootstrap icon (e.g. `github`, `twitter`, `share`)\nSee <https://icons.getbootstrap.com/> for a list of available icons\n"
"short": "Name of bootstrap icon (e.g. `github`, `bluesky`, `share`)",
"long": "Name of bootstrap icon (e.g. `github`, `bluesky`, `share`)\nSee <https://icons.getbootstrap.com/> for a list of available icons\n"
}
}
},
Expand Down Expand Up @@ -4647,7 +4647,8 @@
"object": {
"properties": {
"trace-filters": "string",
"tests": "object"
"tests": "object",
"tests-on-ci": "boolean"
}
}
}
Expand Down Expand Up @@ -17949,12 +17950,12 @@
"mermaid": "%%"
},
"handlers/mermaid/schema.yml": {
"_internalId": 197491,
"_internalId": 197493,
"type": "object",
"description": "be an object",
"properties": {
"mermaid-format": {
"_internalId": 197483,
"_internalId": 197485,
"type": "enum",
"enum": [
"png",
Expand All @@ -17970,7 +17971,7 @@
"exhaustiveCompletions": true
},
"theme": {
"_internalId": 197490,
"_internalId": 197492,
"type": "anyOf",
"anyOf": [
{
Expand Down
1 change: 1 addition & 0 deletions src/resources/schema/definitions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2422,6 +2422,7 @@
properties:
trace-filters: string
tests: object
tests-on-ci: boolean

- id: notebook-view-schema
schema:
Expand Down
3 changes: 3 additions & 0 deletions src/resources/schema/json-schemas.json
Original file line number Diff line number Diff line change
Expand Up @@ -2919,6 +2919,9 @@
},
"tests": {
"type": "object"
},
"tests-on-ci": {
"type": "boolean"
}
}
}
Expand Down
8 changes: 6 additions & 2 deletions src/resources/types/schema-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ export type NavigationItemObject = {
"aria-label"?: string /* Accessible label for the item. */;
file?: string /* Alias for href */;
href?: string /* Link to file contained with the project or external URL */;
icon?: string /* Name of bootstrap icon (e.g. `github`, `twitter`, `share`)
icon?: string /* Name of bootstrap icon (e.g. `github`, `bluesky`, `share`)
See <https://icons.getbootstrap.com/> for a list of available icons */;
id?: string;
menu?: (NavigationItem)[];
Expand Down Expand Up @@ -1208,7 +1208,11 @@ export type ProjectProfile = {
export type BadParseSchema = JsonObject;

export type QuartoDevSchema = {
_quarto?: { "trace-filters"?: string; tests?: JsonObject };
_quarto?: {
"trace-filters"?: string;
"tests-on-ci"?: boolean;
tests?: JsonObject;
};
};

export type NotebookViewSchema = {
Expand Down
1 change: 1 addition & 0 deletions src/resources/types/zod/schema-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1247,6 +1247,7 @@ export const ZodQuartoDevSchema = z.object({
_quarto: z.object({
"trace-filters": z.string(),
tests: z.object({}).passthrough(),
"tests-on-ci": z.boolean(),
}).passthrough().partial(),
}).passthrough().partial();

Expand Down
2 changes: 2 additions & 0 deletions tests/docs/smoke-all/article-layout/tables/tufte.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ execute:
reference-location: margin
citation-location: margin
bibliography: skeleton.bib
_quarto:
tests-on-ci: false
---

# Introduction
Expand Down
4 changes: 3 additions & 1 deletion tests/smoke/render/render-page-layout.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,7 @@ import { docs } from "../../utils.ts";
import { testRender } from "./render.ts";

// Simple rendering tests
testRender(docs("page-layout/tufte-pdf.qmd"), "pdf", true);
// TODO: 10/11/2025 - SKIPPED FOR NOW DUE TO LATEX UPDATE PROBLEMS
// See https://github.com/quarto-dev/quarto-cli/issues/13647
// testRender(docs("page-layout/tufte-pdf.qmd"), "pdf", true);
testRender(docs("page-layout/tufte-html.qmd"), "html", false);
Loading