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/build-deploy-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
python-version: ${{ env.PYTHON_VERSION }}

- name: Install dependencies (default with full options & doc)
run: uv pip install --python-version=${{ env.PYTHON_VERSION }} '.[full]' --group doc
run: uv pip install --python-version=${{ env.PYTHON_VERSION }} -e '.[full]' --group doc

- name: Determine deployment folder
id: deploy_folder
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Install default (with full options) and test dependencies
run: uv pip install --python-version=${{ matrix.python-version }} '.[full]' --group test
run: uv pip install --python-version=${{ matrix.python-version }} -e '.[full]' --group test
- name: Run unit and doc tests with coverage report
run: uv run pytest -W error tests/unit tests/doc --cov=src --cov-report=xml
- name: Upload results to Codecov
Expand All @@ -45,7 +45,7 @@ jobs:
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Install default (without any option) and test dependencies
run: uv pip install --python-version=${{ env.PYTHON_VERSION }} . --group test
run: uv pip install --python-version=${{ env.PYTHON_VERSION }} -e . --group test
- name: Run unit and doc tests with coverage report
run: |
uv run pytest -W error tests/unit tests/doc \
Expand All @@ -71,7 +71,7 @@ jobs:
python-version: ${{ env.PYTHON_VERSION }}

- name: Install dependencies (default with full options & doc)
run: uv pip install --python-version=${{ env.PYTHON_VERSION }} '.[full]' --group doc
run: uv pip install --python-version=${{ env.PYTHON_VERSION }} -e '.[full]' --group doc

- name: Build Documentation
working-directory: docs
Expand All @@ -90,7 +90,7 @@ jobs:
python-version: ${{ env.PYTHON_VERSION }}

- name: Install dependencies (default with full options & check)
run: uv pip install --python-version=${{ env.PYTHON_VERSION }} '.[full]' --group check
run: uv pip install --python-version=${{ env.PYTHON_VERSION }} -e '.[full]' --group check

- name: Run mypy
run: uv run mypy src/torchjd
Loading