-
Notifications
You must be signed in to change notification settings - Fork 26
77 lines (70 loc) · 1.88 KB
/
unittests.yml
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
name: Tests
on:
push:
branches: [main]
pull_request:
branches:
- '*'
schedule:
- cron: "0 0 * * 1,4"
workflow_dispatch:
inputs:
version:
description: Manual Unittest Run
default: test
required: false
jobs:
Tests:
name: ${{ matrix.os }}, ${{ matrix.environment-file }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
environment-file:
- ci/310.yml
- ci/311.yml
- ci/312.yml
include:
- environment-file: ci/311.yml
os: macos-latest
- environment-file: ci/311.yml
os: macos-14 # Apple Silicon
- environment-file: ci/311.yml
os: windows-latest
defaults:
run:
shell: bash -l {0}
steps:
- uses: actions/checkout@v4
- name: setup micromamba
uses: mamba-org/setup-micromamba@v1
with:
environment-file: ${{ matrix.environment-file }}
micromamba-version: 'latest'
- name: Test segregation
run: |
pytest \
segregation \
-v \
-r a \
--color yes \
--cov segregation \
--cov-append \
--cov-report term-missing \
--cov-report xml \
- name: codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage.xml
name: segregation-codecov
- name: Generate and publish the report
if: |
failure()
&& steps.status.outcome == 'failure'
&& github.event_name == 'schedule'
&& github.repository_owner == 'pysal'
uses: xarray-contrib/issue-from-pytest-log@v1
with:
log-path: pytest-log.jsonl