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
2 changes: 1 addition & 1 deletion .github/workflows/python-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,4 +80,4 @@ jobs:

[Link to failing run](${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }})

PINNED: false
PINNED: false
4 changes: 3 additions & 1 deletion .github/workflows/reusable-github-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,14 @@ jobs:
with:
python-version: "3.12"

# Here we want to install the current package in editable mode,
# in case mkdocs needs the package (i.e. we are building a mkdocs plugin).
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install poetry
poetry config virtualenvs.create false
poetry install --no-root --with dev
poetry install --with dev

- name: Configure Git user
run: |
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ docs:
poetry run mkdocs serve

fix:
poetry run ruff . --fix
poetry run ruff check . --fix
poetry run ruff format .

check: poetry-export
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@ commands =

[testenv:lint]
commands =
ruff .
ruff check .