Skip to content

Update kaleido #178

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
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
18 changes: 9 additions & 9 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,28 +22,28 @@ jobs:
- uses: actions/checkout@v4
- name: Install TinyTex
uses: r-lib/actions/setup-tinytex@v2
if: runner.os != 'Windows'
- name: Install additional LaTeX packages
run: |
tlmgr update --self
tlmgr install a4wide beamer biber biblatex caption eurosym grfext minibox moreverb ntgclass relsize setspace xfrac
tlmgr list --only-installed
if: runner.os != 'Windows'
- uses: prefix-dev/setup-pixi@v0.8.1
- uses: prefix-dev/setup-pixi@v0.8.3
with:
pixi-version: v0.42.1
pixi-version: v0.47.0
cache: true
cache-write: ${{ github.event_name == 'push' && github.ref_name == 'main' }}
activate-environment: true
frozen: true
- name: Install Chrome for Kaleido
shell: bash {0}
run: pixi run kaleido_get_chrome -v
- name: Run pytest on MacOS
shell: bash {0}
run: pixi run pytest
if: runner.os == 'MacOS'
- name: Run tests (except pytask) on Windows
- name: Run tests on Windows
shell: bash {0}
run: pixi run pytest -k "not pytask"
if: runner.os == 'Windows'
run: pixi run pytest
- name: Run pytest (with coverage) on Linux
shell: bash {0}
run: pixi run pytest --cov-report=xml --cov=./
Expand All @@ -58,9 +58,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: prefix-dev/setup-pixi@v0.8.1
- uses: prefix-dev/setup-pixi@v0.8.3
with:
pixi-version: v0.42.1
pixi-version: v0.47.0
cache: true
cache-write: ${{ github.event_name == 'push' && github.ref_name == 'main' }}
activate-environment: true
Expand Down
3 changes: 2 additions & 1 deletion docs_template/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,11 +83,12 @@

linkcheck_ignore = [
r"https://tinyurl\.com/*.",
r"https://www\.computerhope\.com/issues/ch000549\.htm",
]

# Add any paths that contain templates here, relative to this directory.
templates_path = ["_templates"]
# html_static_path = ["_static"]
html_static_path = ["_static"]

# The suffix(es) of source filenames.
# You can specify multiple suffix as a list of string:
Expand Down
Loading
Loading