diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 2657848602..7f4704a18e 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -31,45 +31,44 @@ jobs: matrix: os: [ubuntu-latest] python-version: ["3.9"] - pytest_args: [tests/benchmarks/test_arrow.py] - runtime-version: [upstream] - # runtime-version: [upstream, latest, "0.2.1"] + pytest_args: [tests] + runtime-version: [upstream, latest, "0.2.1"] include: # Run stability tests on Python 3.8 - pytest_args: tests/stability python-version: "3.8" runtime-version: upstream os: ubuntu-latest -# - pytest_args: tests/stability -# python-version: "3.8" -# runtime-version: latest -# os: ubuntu-latest -# - pytest_args: tests/stability -# python-version: "3.8" -# runtime-version: "0.2.1" -# os: ubuntu-latest + - pytest_args: tests/stability + python-version: "3.8" + runtime-version: latest + os: ubuntu-latest + - pytest_args: tests/stability + python-version: "3.8" + runtime-version: "0.2.1" + os: ubuntu-latest # Run stability tests on Python 3.10 - pytest_args: tests/stability python-version: "3.10" runtime-version: upstream os: ubuntu-latest -# - pytest_args: tests/stability -# python-version: "3.10" -# runtime-version: latest -# os: ubuntu-latest -# - pytest_args: tests/stability -# python-version: "3.10" -# runtime-version: "0.2.1" -# os: ubuntu-latest + - pytest_args: tests/stability + python-version: "3.10" + runtime-version: latest + os: ubuntu-latest + - pytest_args: tests/stability + python-version: "3.10" + runtime-version: "0.2.1" + os: ubuntu-latest # Run stability tests on Python Windows and MacOS (latest py39 only) -# - pytest_args: tests/stability -# python-version: "3.9" -# runtime-version: latest -# os: windows-latest -# - pytest_args: tests/stability -# python-version: "3.9" -# runtime-version: latest -# os: macos-latest + - pytest_args: tests/stability + python-version: "3.9" + runtime-version: latest + os: windows-latest + - pytest_args: tests/stability + python-version: "3.9" + runtime-version: latest + os: macos-latest steps: - name: Checkout