From efe222a04825b9f7fea9f6ca69aacde47d8c8c3c Mon Sep 17 00:00:00 2001 From: getzze Date: Thu, 13 Jun 2024 00:17:36 +0100 Subject: [PATCH] separate tests --- .github/workflows/check.yaml | 51 ++++++++++++++++++++++++++++- .github/workflows/run-tests.yaml | 55 ++------------------------------ 2 files changed, 52 insertions(+), 54 deletions(-) diff --git a/.github/workflows/check.yaml b/.github/workflows/check.yaml index e8bb4e48..ea91bad5 100644 --- a/.github/workflows/check.yaml +++ b/.github/workflows/check.yaml @@ -1,4 +1,4 @@ -name: CI-Lint +name: CI on: push: @@ -60,3 +60,52 @@ jobs: with: name: docs path: docs/_build/ + + test: + name: Test + if: github.event_name != 'schedule' + runs-on: ${{ matrix.os }} + strategy: + fail-fast: false + matrix: + os: [ubuntu-latest, macos-latest, windows-latest] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] + exclude: + # macos-latest only work with arm64 + - os: macos-latest + python-version: ["3.8", "3.9"] + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 + with: + python-version: ${{ matrix.python-version }} + cache: 'pip' + - name: install + run: | + python -m pip install --upgrade pip + pip install -e .[test] + - name: run pytest --cov + run: | + set -e + pytest --cov=./ --cov-report=xml + : .coverage confuses coveralls, remove it + rm -f .coverage + - name: upload coverage data to coveralls + uses: coverallsapp/github-action@v2.2.3 + with: + parallel: true + flag-name: python-${{ matrix.python-version }} + github-token: ${{ secrets.GITHUB_TOKEN }} + - name: upload coverage data to codecov + uses: codecov/codecov-action@v4.1.0 + with: + fail_ci_if_error: true + + coveralls-finish: + needs: test + if: github.event_name != 'schedule' + runs-on: ubuntu-latest + steps: + - uses: coverallsapp/github-action@v2.2.3 + with: + parallel-finished: true diff --git a/.github/workflows/run-tests.yaml b/.github/workflows/run-tests.yaml index 191d0524..fc7370e1 100644 --- a/.github/workflows/run-tests.yaml +++ b/.github/workflows/run-tests.yaml @@ -1,9 +1,6 @@ -name: CI-Test +name: Test-APIs on: - push: - branches: [main] - pull_request: {} schedule: - cron: "12 12 12 * *" # run once a month on the 12th at 12:12 @@ -12,56 +9,8 @@ concurrency: cancel-in-progress: true jobs: - test: - name: Test - if: github.event_name != 'schedule' - runs-on: ${{ matrix.os }} - strategy: - fail-fast: false - matrix: - os: [ubuntu-latest, macos-latest, windows-latest] - python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] - exclude: - # macos-latest only work with arm64 - - os: macos-latest - python-version: ["3.8", "3.9"] - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-python@v5 - with: - python-version: ${{ matrix.python-version }} - cache: 'pip' - - name: install - run: | - python -m pip install --upgrade pip - pip install -e .[test] - - name: run pytest --cov - run: | - set -e - pytest --cov=./ --cov-report=xml - : .coverage confuses coveralls, remove it - rm -f .coverage - - name: upload coverage data to coveralls - uses: coverallsapp/github-action@v2.2.3 - with: - parallel: true - flag-name: python-${{ matrix.python-version }} - github-token: ${{ secrets.GITHUB_TOKEN }} - - name: upload coverage data to codecov - uses: codecov/codecov-action@v4.1.0 - with: - fail_ci_if_error: true - coveralls-finish: - needs: test - if: github.event_name != 'schedule' - runs-on: ubuntu-latest - steps: - - uses: coverallsapp/github-action@v2.2.3 - with: - parallel-finished: true - test-api: - name: Test API + name: Test APIs if: github.event_name == 'schedule' runs-on: ubuntu-latest steps: