Add editable package installation to workflows

- Added step to install the package in editable mode.
- Updated Dockerfile to include editable package installation.
This commit is contained in:
Jonathon Broughton
2025-03-24 18:51:38 +00:00
parent 975e69dc86
commit 5bd172d5b3
2 changed files with 4 additions and 0 deletions
+1
View File
@@ -17,6 +17,7 @@ RUN pip install --no-use-pep517 'stringcase==1.2.0'
# Install all dependencies from requirements.txt
RUN pip install --no-cache-dir -r requirements.txt
RUN pip install --no-deps -e .
# Set the PYTHONPATH to find modules in src/
ENV PYTHONPATH="/home/speckle/src"