-
Notifications
You must be signed in to change notification settings - Fork 0
109 lines (95 loc) · 2.76 KB
/
tests.yml
File metadata and controls
109 lines (95 loc) · 2.76 KB
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
97
98
99
100
101
102
103
104
105
106
107
108
109
name: unit-tests
on:
push:
branches:
- "**"
pull_request:
jobs:
wrapper-cross-platform:
name: wrapper-unit (${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Run cross-platform wrapper tests (no real external tools)
run: python -m unittest -v test.test_vcf_rdfizer_cross_platform_unit
shell-posix:
name: shell+pipeline-unit (${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- ubuntu-22.04
- macos-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Run full unit test suite
run: python -m unittest discover -s test -p "test_*_unit.py" -v
coverage:
name: coverage-upload
runs-on: ubuntu-latest
needs:
- wrapper-cross-platform
- shell-posix
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Run coverage
run: |
python -m pip install --upgrade pip coverage
coverage run -m unittest discover -s test -p "test_*_unit.py"
coverage xml -o coverage.xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
with:
files: ./coverage.xml
flags: unittests
name: vcf-rdfizer-unit-tests
fail_ci_if_error: false
package-smoke:
name: package-smoke (${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
needs:
- wrapper-cross-platform
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Build + install wheel
run: |
python -m pip install --upgrade pip build
python -m build
python -c "import glob,subprocess,sys; wheels=sorted(glob.glob('dist/*.whl')); wheels or (_ for _ in ()).throw(SystemExit('No wheel files found in dist/')); print(f'Installing wheel: {wheels[-1]}'); subprocess.check_call([sys.executable,'-m','pip','install',wheels[-1]])"
python -m vcf_rdfizer --help