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
4 changes: 2 additions & 2 deletions .github/workflows/ci-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,15 +44,15 @@ jobs:
- name: Install Python Dependencies
env:
UV_PYTHON: ${{ steps.setup-python.outputs.python-path }}
run: uv sync --locked
run: uv sync --locked --no-build --no-install-project

- name: Install Node Dependencies
shell: bash
run: npm ci --ignore-scripts

- name: Test with pytest
id: pytest
run: uv run --locked pytest
run: uv run --locked --no-build --no-sync pytest

- name: Test with Jest
id: jest
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/update-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
- name: Install Python dependencies
env:
UV_PYTHON: ${{ steps.setup-python.outputs.python-path }}
run: uv sync --locked --no-dev
run: uv sync --locked --no-build --no-dev --no-install-project

- name: Restore generated data cache
shell: bash
Expand All @@ -68,14 +68,14 @@ jobs:
PATREON_CAMPAIGN_ID: 6131567
READTHEDOCS_TOKEN: ${{ secrets.READTHEDOCS_TOKEN }}
THREADING_EXCEPTION_HANDLER: "true"
run: uv run --locked --no-dev python -u -m src.updater
run: uv run --locked --no-build --no-dev --no-sync python -u -m src.updater

- name: Cat log
if: always()
run: cat ./logs/updater.log

- name: Build dashboard data
run: uv run --locked --no-dev python -u -m src.builder
run: uv run --locked --no-build --no-dev --no-sync python -u -m src.builder

- name: Prepare Artifacts # uploading artifacts will fail if not zipped due to very large quantity of files
shell: bash
Expand Down