diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 74e251f12..969d1cea2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -68,6 +68,12 @@ jobs: python build_helpers/freqtrade_client_version_align.py - name: Tests + if: (!(runner.os == 'Linux' && matrix.python-version == '3.12' && matrix.os == 'ubuntu-22.04')) + run: | + pytest --random-order + + - name: Tests with Coveralls + if: (runner.os == 'Linux' && matrix.python-version == '3.12' && matrix.os == 'ubuntu-22.04') run: | pytest --random-order --cov=freqtrade --cov=freqtrade_client --cov-config=.coveragerc @@ -138,7 +144,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ "macos-12", "macos-13", "macos-14" ] + os: [ "macos-13", "macos-14", "macos-15" ] python-version: ["3.10", "3.11", "3.12"] steps: