File tree 2 files changed +3
-2
lines changed 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -61,12 +61,12 @@ jobs:
61
61
- name : Install myst-nb with Sphinx ${{ matrix.sphinx }}
62
62
shell : bash
63
63
run : |
64
- pip install --upgrade pip
65
64
# Temporary: for python 3.13 we need the nightly pyarrow wheels
66
65
if [[ ${{ matrix.python-version }} == '3.13' ]] ; then
67
66
PIP_EXTRA_INDEX_URL=https://pypi.anaconda.org/scientific-python-nightly-wheels/simple pip install --pre pyarrow
68
67
fi
69
68
pip install --upgrade "Sphinx${{ matrix.sphinx }}" "myst-parser${{ matrix.myst-parser }}" -e .[testing]
69
+ pip freeze
70
70
71
71
- name : Run pytest
72
72
run : pytest --durations=10
84
84
cache : pip
85
85
- name : Install dependencies
86
86
run : |
87
- pip install --upgrade pip
88
87
pip install -e .[testing]
88
+ pip freeze
89
89
90
90
- name : Run pytest
91
91
run : pytest --durations=10 --cov=myst_nb --cov-report=xml --cov-report=term-missing
Original file line number Diff line number Diff line change @@ -35,6 +35,7 @@ allowlist_externals =
35
35
echo
36
36
rm
37
37
commands =
38
+ pip freeze
38
39
clean: rm -rf docs/_build
39
40
sphinx-build {posargs} -nW --keep-going -b {env:BUILDER} docs/ docs/_build/{env:BUILDER}
40
41
commands_post = echo " open file://{toxinidir}/docs/_build/{env:BUILDER}/index.html"
You can’t perform that action at this time.
0 commit comments