Skip to content

Fixing tests related to repo restructuring #13

Fixing tests related to repo restructuring

Fixing tests related to repo restructuring #13

Workflow file for this run

name: tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
run-pytest:
strategy:
fail-fast: false
matrix:
python-version: ["3.10"]
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Install CadQuery and pytest
run: |
pip3 install --upgrade pip
pip3 install -e .
pip3 install -e .[dev]
apt-get update && apt install -y libgl1-mesa-glx
- name: Run tests
run: |
python3 -m pytest -v