-
Notifications
You must be signed in to change notification settings - Fork 1
58 lines (54 loc) · 1.32 KB
/
pytest-windows.yaml
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
name: pytest on Windows
on:
pull_request:
branches:
- develop
- main
- release/**
- feature/**
- hotfix/**
push:
branches:
- develop
- main
- release/**
- feature/**
- hotfix/**
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
env:
source_dir: peak_finder
jobs:
pytest:
name: pytest (Windows)
strategy:
fail-fast: false
matrix:
python_ver: ['3.10']
defaults:
run:
shell: powershell
runs-on: windows-latest
env:
PYTHONUTF8: 1
CONDA_LOCK_ENV_FILE: environments/conda-py-${{ matrix.python_ver }}-win-64-dev.lock.yml
PIP_EXTRA_INDEX_URL: https://test.pypi.org/simple/
steps:
- uses: actions/checkout@v4
with:
lfs: true
- name: Setup conda env
uses: mamba-org/provision-with-micromamba@main
with:
environment-file: ${{ env.CONDA_LOCK_ENV_FILE }}
environment-name: test_env
cache-downloads: true
- name: pytest
run: |
pytest --cov=${source_dir} --cov-report=xml --cov-branch
- name: Codecov
if: ${{ success() && matrix.python_ver == '3.10' }}
uses: codecov/codecov-action@v3
with:
name: GitHub