-
-
Notifications
You must be signed in to change notification settings - Fork 50
96 lines (94 loc) · 2.84 KB
/
test.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
name: pytest
on:
pull_request:
push:
branches: [main]
paths:
- ".github/workflows/*"
- "pymc_extras/**"
- "tests/**"
- "setup.py"
- "pyproject.toml"
- "buildosx"
- "conda-envs/**"
- "codecov.yml"
jobs:
ubuntu:
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.10"]
test-subset:
- tests
fail-fast: false
runs-on: ${{ matrix.os }}
env:
TEST_SUBSET: ${{ matrix.test-subset }}
PYTENSOR_FLAGS: gcc__cxxflags='-march=native'
defaults:
run:
shell: bash -leo pipefail {0}
steps:
- uses: actions/checkout@v4
- uses: mamba-org/setup-micromamba@v1
with:
environment-file: conda-envs/environment-test.yml
create-args: >-
python=${{matrix.python-version}}
environment-name: pymc-extras-test
init-shell: bash
cache-environment: true
- name: Install pymc-extras
run: |
pip install -e .
python --version
- name: Run tests
run: |
python -m pytest -vv --cov=pymc_extras --cov-append --cov-report=xml --cov-report term --durations=50 $TEST_SUBSET
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v2
with:
env_vars: TEST_SUBSET
name: ${{ matrix.os }}
fail_ci_if_error: false
windows:
strategy:
matrix:
os: [windows-latest]
python-version: ["3.12"]
test-subset:
- tests
fail-fast: false
runs-on: ${{ matrix.os }}
env:
TEST_SUBSET: ${{ matrix.test-subset }}
PYTENSOR_FLAGS: gcc__cxxflags='-march=core2'
defaults:
run:
shell: cmd /C call {0}
steps:
- uses: actions/checkout@v4
- uses: mamba-org/setup-micromamba@v1
with:
environment-file: conda-envs/windows-environment-test.yml
micromamba-version: "1.5.10-0" # Until https://github.com/mamba-org/mamba/issues/3467 is not fixed
create-args: >-
python=${{matrix.python-version}}
environment-name: pymc-extras-test
init-shell: cmd.exe
cache-environment: true
- name: Install pymc-extras
run: |
pip install -e .
python --version
- name: Run tests
# This job uses a cmd shell, therefore the environment variable syntax is different!
# The ">-" in the next line replaces newlines with spaces (see https://stackoverflow.com/a/66809682).
run: >-
python -m pytest -vv --cov=pymc_extras --cov-append --cov-report=xml --cov-report term --durations=50 %TEST_SUBSET%
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v2
with:
env_vars: TEST_SUBSET
name: ${{ matrix.os }}
fail_ci_if_error: false