File: testing.yml

package info (click to toggle)
esda 2.7.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 155,444 kB
  • sloc: python: 7,981; makefile: 40
file content (79 lines) | stat: -rw-r--r-- 2,305 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
 name: Continuous Integration

 on:
   push:
     branches:
     - '*'
   pull_request:
     branches:
     - '*'
   schedule:
     - cron: '59 21 * * *'
   workflow_dispatch:
     inputs:
       version:
         description: Manual Test Run
         default: test
         required: false

 jobs:
   unittests:
     env:
       FETCH_DATA: python -c 'from libpysal.examples import load_example as ex; [ex(e) for e in ["columbus", "desmith", "sids2", "stl", "Sacramento1"]]'
       RUN_TEST: pytest esda -v -r a -n auto --cov esda --cov-report xml --color yes --cov-append --cov-report term-missing
     name: CI (${{ matrix.os }}, ${{ matrix.environment-file }})
     runs-on: ${{ matrix.os }}
     timeout-minutes: 25
     strategy:
       matrix:
         os: [ubuntu-latest]
         environment-file:
           - ci/310-oldest.yaml
           - ci/310-numba-oldest.yaml
           - ci/311-latest.yaml
           - ci/311-numba-latest.yaml
           - ci/312-min.yaml
           - ci/312-latest.yaml
           - ci/312-dev.yaml
           - ci/312-numba-latest.yaml
           - ci/312-numba-dev.yaml
         include:
           - environment-file: ci/312-numba-latest.yaml
             os: macos-13 # Intel
           - environment-file: ci/312-numba-latest.yaml
             os: macos-14 # Apple Silicon
           - environment-file: ci/312-numba-latest.yaml
             os: windows-latest
       fail-fast: false
     defaults:
       run:
        shell: bash -l {0}

     steps:
       - name: checkout repo
         uses: actions/checkout@v4
       - name: setup micromamba
         uses: mamba-org/setup-micromamba@v2
         with:
            micromamba-version: 'latest'
            environment-file: ${{ matrix.environment-file }}

       - name: environment info
         run: |
           micromamba info
           micromamba list

       - name: spatial versions
         run: 'python -c "import geopandas; geopandas.show_versions();"'

       - name: run tests - bash
         run: |
           ${{ env.FETCH_DATA }}
           ${{ env.RUN_TEST }}

       - name: ${{ matrix.os }}, ${{ matrix.environment-file }}
         uses: codecov/codecov-action@v5
         with:
           token: ${{ secrets.CODECOV_TOKEN }}
           file: ./coverage.xml
           name: esda-codecov