|
1 | | -name: Tests |
2 | | -on: [push] |
3 | | - |
4 | | -env: |
5 | | - LIBZIM_DL_VERSION: "9.4.0" |
6 | | - MACOSX_DEPLOYMENT_TARGET: "13.0" |
7 | | - # we want cython traces for coverage |
8 | | - PROFILE: "1" |
9 | | - |
10 | | -jobs: |
11 | | - test: |
12 | | - runs-on: ${{ matrix.os }} |
13 | | - strategy: |
14 | | - matrix: |
15 | | - os: [macos-13, windows-2022, ubuntu-24.04] |
16 | | - python: ["3.9", "3.10", "3.11", "3.12", "3.13"] |
17 | | - |
18 | | - steps: |
19 | | - - uses: actions/checkout@v5 |
20 | | - |
21 | | - - name: Set up Python ${{ matrix.python }} |
22 | | - uses: actions/setup-python@v6 |
23 | | - with: |
24 | | - python-version: ${{ matrix.python }} |
25 | | - architecture: x64 |
26 | | - |
27 | | - |
28 | | - - name: Install dependencies (and project) |
29 | | - run: | |
30 | | - pip install -U pip |
31 | | - pip install -e .[test,scripts] |
32 | | -
|
33 | | - - name: move DLLs next to wrapper |
34 | | - if: matrix.os == 'windows-2022' |
35 | | - run: Move-Item -Force -Path .\libzim\*.dll -Destination .\ |
36 | | - |
37 | | - - name: Run the tests |
38 | | - run: inv coverage --args "-vvv" |
39 | | - |
40 | | - - name: Upload coverage report to codecov |
41 | | - if: matrix.os == 'ubuntu-24.04' && matrix.python == '3.13' |
42 | | - uses: codecov/codecov-action@v5 |
43 | | - with: |
44 | | - fail_ci_if_error: true |
45 | | - token: ${{ secrets.CODECOV_TOKEN }} |
| 1 | +# name: Tests |
| 2 | +# on: [push] |
| 3 | + |
| 4 | +# env: |
| 5 | +# LIBZIM_DL_VERSION: "9.4.0" |
| 6 | +# MACOSX_DEPLOYMENT_TARGET: "13.0" |
| 7 | +# # we want cython traces for coverage |
| 8 | +# PROFILE: "1" |
| 9 | + |
| 10 | +# jobs: |
| 11 | +# test: |
| 12 | +# runs-on: ${{ matrix.os }} |
| 13 | +# strategy: |
| 14 | +# matrix: |
| 15 | +# os: [macos-13, windows-2022, ubuntu-24.04] |
| 16 | +# python: ["3.9", "3.10", "3.11", "3.12", "3.13"] |
| 17 | + |
| 18 | +# steps: |
| 19 | +# - uses: actions/checkout@v5 |
| 20 | + |
| 21 | +# - name: Set up Python ${{ matrix.python }} |
| 22 | +# uses: actions/setup-python@v6 |
| 23 | +# with: |
| 24 | +# python-version: ${{ matrix.python }} |
| 25 | +# architecture: x64 |
| 26 | + |
| 27 | + |
| 28 | +# - name: Install dependencies (and project) |
| 29 | +# run: | |
| 30 | +# pip install -U pip |
| 31 | +# pip install -e .[test,scripts] |
| 32 | + |
| 33 | +# - name: move DLLs next to wrapper |
| 34 | +# if: matrix.os == 'windows-2022' |
| 35 | +# run: Move-Item -Force -Path .\libzim\*.dll -Destination .\ |
| 36 | + |
| 37 | +# - name: Run the tests |
| 38 | +# run: inv coverage --args "-vvv" |
| 39 | + |
| 40 | +# - name: Upload coverage report to codecov |
| 41 | +# if: matrix.os == 'ubuntu-24.04' && matrix.python == '3.13' |
| 42 | +# uses: codecov/codecov-action@v5 |
| 43 | +# with: |
| 44 | +# fail_ci_if_error: true |
| 45 | +# token: ${{ secrets.CODECOV_TOKEN }} |
0 commit comments