From eb5a2da0e148e742702e1da559f24ec870672e4b Mon Sep 17 00:00:00 2001 From: Jeremy Wright Date: Mon, 23 Oct 2023 16:05:34 -0400 Subject: [PATCH] Trying again to fix MacOS runner --- .github/workflows/tests.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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