Skip to content

Commit

Permalink
Trying to fix test workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
jmwright committed Dec 16, 2024
1 parent 0766b8a commit ab0f29c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/test_freecad.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ jobs:
source /usr/share/miniconda/bin/activate
conda activate freecad
python -m pip install --upgrade pip
unset CONDA_PREFIX_1
pip install -e .
pip install -e .[dev]
python -m pytest -v tests/test_freecad.py
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ jobs:
fail-fast: false
matrix:
python-version: ["3.10"]
os: [ubuntu-latest, windows-latest] # , macos-latest
os: [ubuntu-20.04, windows-latest] # , macos-latest
runs-on: ${{ matrix.os }}
steps:
- name: Install Dependencies (Linux)
run: sudo apt-get update && sudo apt install -y libgl1-mesa-glx
if: matrix.os == 'ubuntu-latest'
if: matrix.os == 'ubuntu-20.04'
- uses: actions/checkout@v2
- name: Install CadQuery and pytest
run: |
Expand Down

0 comments on commit ab0f29c

Please sign in to comment.