File tree Expand file tree Collapse file tree 2 files changed +13
-3
lines changed
tests/smoke/yaml-intelligence Expand file tree Collapse file tree 2 files changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -132,6 +132,16 @@ const jupyterEngineSchema = defineCached(
132132 } ,
133133 "engine-jupyter" ,
134134) ;
135+ const juliaEnginesSchema = defineCached (
136+ // deno-lint-ignore require-await
137+ async ( ) => {
138+ return {
139+ schema : makeEngineSchema ( "julia" ) ,
140+ errorHandlers : [ ] ,
141+ } ;
142+ } ,
143+ "engine-julia" ,
144+ ) ;
135145
136146export async function getEngineOptionsSchema ( ) : Promise <
137147 Record < string , ConcreteSchema >
@@ -140,6 +150,7 @@ export async function getEngineOptionsSchema(): Promise<
140150 markdown : await markdownEngineSchema ( ) ,
141151 knitr : await knitrEngineSchema ( ) ,
142152 jupyter : await jupyterEngineSchema ( ) ,
153+ julia : await juliaEnginesSchema ( ) ,
143154 } ;
144155
145156 return obj ;
Original file line number Diff line number Diff line change @@ -17,9 +17,8 @@ const files = [
1717 "fail-validation-knitr-backticks.qmd" ,
1818 "fail-validation-jupyter.qmd" ,
1919 "fail-validation-jupyter-backticks.qmd" ,
20- // FIXME: Activate this when Quarto schema for Julia engine
21- //"fail-validation-julia.qmd",
22- //"fail-validation-julia-backticks.qmd",
20+ "fail-validation-julia.qmd" ,
21+ "fail-validation-julia-backticks.qmd" ,
2322] ;
2423
2524files . forEach ( testYamlValidationFails ) ;
You can’t perform that action at this time.
0 commit comments