Skip to content

Commit ab0f29c

Browse files
committed
Trying to fix test workflows
1 parent 0766b8a commit ab0f29c

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/test_freecad.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ jobs:
1616
source /usr/share/miniconda/bin/activate
1717
conda activate freecad
1818
python -m pip install --upgrade pip
19+
unset CONDA_PREFIX_1
1920
pip install -e .
2021
pip install -e .[dev]
2122
python -m pytest -v tests/test_freecad.py

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ jobs:
1212
fail-fast: false
1313
matrix:
1414
python-version: ["3.10"]
15-
os: [ubuntu-latest, windows-latest] # , macos-latest
15+
os: [ubuntu-20.04, windows-latest] # , macos-latest
1616
runs-on: ${{ matrix.os }}
1717
steps:
1818
- name: Install Dependencies (Linux)
1919
run: sudo apt-get update && sudo apt install -y libgl1-mesa-glx
20-
if: matrix.os == 'ubuntu-latest'
20+
if: matrix.os == 'ubuntu-20.04'
2121
- uses: actions/checkout@v2
2222
- name: Install CadQuery and pytest
2323
run: |

0 commit comments

Comments
 (0)