diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 427c9aa..83ba2bf 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -12,15 +12,15 @@ jobs: fail-fast: false matrix: python-version: ["3.10"] - os: [ubuntu-latest, windows-latest] # , macos-latest + os: [ubuntu-latest, windows-latest, macos-latest] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v2 - name: Install CadQuery and pytest run: | - pip install --upgrade pip - pip install -e . - pip install -e .[dev] + pip3 install --upgrade pip + pip3 install -e . + pip3 install -e .[dev] - name: Run tests run: | - pytest -v + python3 -m pytest -v