File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 2727 python-version : ${{ env.PYTHON_VERSION }}
2828
2929 - name : Install dependencies (default with full options & doc)
30- run : uv pip install --python-version=${{ env.PYTHON_VERSION }} '.[full]' --group doc
30+ run : uv pip install --python-version=${{ env.PYTHON_VERSION }} -e '.[full]' --group doc
3131
3232 - name : Determine deployment folder
3333 id : deploy_folder
Original file line number Diff line number Diff line change 2727 with :
2828 python-version : ${{ matrix.python-version }}
2929 - name : Install default (with full options) and test dependencies
30- run : uv pip install --python-version=${{ matrix.python-version }} '.[full]' --group test
30+ run : uv pip install --python-version=${{ matrix.python-version }} -e '.[full]' --group test
3131 - name : Run unit and doc tests with coverage report
3232 run : uv run pytest -W error tests/unit tests/doc --cov=src --cov-report=xml
3333 - name : Upload results to Codecov
4545 with :
4646 python-version : ${{ env.PYTHON_VERSION }}
4747 - name : Install default (without any option) and test dependencies
48- run : uv pip install --python-version=${{ env.PYTHON_VERSION }} . --group test
48+ run : uv pip install --python-version=${{ env.PYTHON_VERSION }} -e . --group test
4949 - name : Run unit and doc tests with coverage report
5050 run : |
5151 uv run pytest -W error tests/unit tests/doc \
7171 python-version : ${{ env.PYTHON_VERSION }}
7272
7373 - name : Install dependencies (default with full options & doc)
74- run : uv pip install --python-version=${{ env.PYTHON_VERSION }} '.[full]' --group doc
74+ run : uv pip install --python-version=${{ env.PYTHON_VERSION }} -e '.[full]' --group doc
7575
7676 - name : Build Documentation
7777 working-directory : docs
9090 python-version : ${{ env.PYTHON_VERSION }}
9191
9292 - name : Install dependencies (default with full options & check)
93- run : uv pip install --python-version=${{ env.PYTHON_VERSION }} '.[full]' --group check
93+ run : uv pip install --python-version=${{ env.PYTHON_VERSION }} -e '.[full]' --group check
9494
9595 - name : Run mypy
9696 run : uv run mypy src/torchjd
You can’t perform that action at this time.
0 commit comments