Skip to content

Commit

Permalink
ci: fix coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
voneiden committed Dec 28, 2023
1 parent 3803bfe commit 049991c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ jobs:
$PWD/squashfs-root/usr/bin/python -m venv --system-site-packages venv
echo "$PWD/squashfs-root/usr/lib" > venv/lib/python${PYVER}/site-packages/freecad.pth
echo "$PWD/../src" > venv/lib/python${PYVER}/site-packages/ocp_freecad_cam.pth
- name: Setup FreeCAD (Windows)
if: matrix.os == 'windows-latest'
Expand All @@ -82,6 +83,7 @@ jobs:
Invoke-WebRequest -Uri ("https://github.com" + $matches[1]) -OutFile freecad.7z
7z x freecad.7z
Invoke-Expression (".\" + (Get-ChildItem . "FreeCAD_*" | select -first 1).Name + "\bin\python -m venv --system-site-packages venv")
"$($PWD)\..\src" | Out-File -FilePath "venv\Lib\site-packages\ocp_freecad_cam.pth"
- name: Test FreeCAD is available (Linux)
if: matrix.os == 'ubuntu-latest'
Expand All @@ -106,7 +108,6 @@ jobs:
python -m pip install --upgrade pip
pip install cadquery build123d
pip install -r requirements-dev.txt
pip install .
- name: Install dependencies (Windows)
if: matrix.os == 'windows-latest'
Expand All @@ -115,7 +116,6 @@ jobs:
python -m pip install --upgrade pip
pip install cadquery build123d
pip install -r requirements-dev.txt
pip install .
- name: Check black
if: matrix.primary
Expand Down

0 comments on commit 049991c

Please sign in to comment.