From 9c6fb7ee881ad1a40532e19cee6582007d37b283 Mon Sep 17 00:00:00 2001 From: Matthew Scroggs Date: Wed, 20 Mar 2024 13:49:42 +0000 Subject: [PATCH] remove python tests --- .github/workflows/run-tests.yml | 23 ----------------------- 1 file changed, 23 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 6d72af6..ef85292 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -48,26 +48,3 @@ jobs: python3 find_examples.py chmod +x examples.sh ./examples.sh - - run-tests-python: - name: Run Python tests - runs-on: ubuntu-latest - strategy: - matrix: - python-version: ["3.11"] - steps: - - name: Set up Python - uses: actions/setup-python@v4 - with: - python-version: ${{ matrix.python-version }} - - uses: actions/checkout@v3 - - name: Install Python requirements - run: python3 -m pip install pytest-xdist flake8 - - name: Style checks - run: | - python3 -m flake8 python/test - - name: Install tomllib (for Python <3.11) - run: python3 -m pip install tomli - if: ${{ matrix.python-version == '3.7' || matrix.python-version == '3.8' || matrix.python-version == '3.9' || matrix.python-version == '3.10' }} - - run: python3 -m pytest -n=auto python/test - name: Run tests