@@ -115,7 +115,7 @@ jobs:
115
115
run : |
116
116
if (!requireNamespace('renv', quietly = TRUE)) install.packages('renv')
117
117
renv::restore()
118
- # Install dev versions for our testing
118
+ # Install dev versions for our testing
119
119
# Use r-universe to avoid github api calls
120
120
try(install.packages('knitr', repos = 'https://yihui.r-universe.dev'))
121
121
try(install.packages('rmarkdown', repos = 'https://rstudio.r-universe.dev'))
@@ -164,7 +164,7 @@ jobs:
164
164
run : |
165
165
# Setup IJulia with the jupyter from the Python environment
166
166
# https://julialang.github.io/IJulia.jl/stable/manual/installation/
167
- export JUPYTER=$(find $(dirname $(pipenv run which jupyter))/ -type f -name "jupyter.exe" -o -name "jupyter")
167
+ export JUPYTER=$(find $(dirname $(pipenv run which jupyter))/ -type f -name "jupyter.exe" -o -name "jupyter")
168
168
pipenv run julia --color=yes --project=. -e "import Pkg; Pkg.instantiate(); Pkg.build(\"IJulia\"); Pkg.precompile()"
169
169
echo "Julia Jupyter:"
170
170
julia --project=. -e "import IJulia;println(IJulia.JUPYTER);println(IJulia.find_jupyter_subcommand(\"notebook\"))"
@@ -174,6 +174,9 @@ jobs:
174
174
run : |
175
175
echo "QUARTO_TEST_TIMING=timing-for-ci.txt" >> "$GITHUB_ENV"
176
176
177
+ # - name: Setup tmate session
178
+ # uses: mxschmitt/action-tmate@v3
179
+
177
180
- name : Run all Smoke Tests Windows
178
181
if : ${{ runner.os == 'Windows' && format('{0}', inputs.buckets) == '' && matrix.time-test == false }}
179
182
env :
@@ -197,6 +200,7 @@ jobs:
197
200
env :
198
201
# Useful as TinyTeX latest release is checked in run-test.sh
199
202
GH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
203
+ QUARTO_LOG_LEVEL : DEBUG
200
204
run : |
201
205
haserror=0
202
206
readarray -t my_array < <(echo '${{ inputs.buckets }}' | jq -rc '.[]')
0 commit comments