-
-
Notifications
You must be signed in to change notification settings - Fork 432
110 lines (104 loc) · 3.54 KB
/
Copy pathpythontest.yml
File metadata and controls
110 lines (104 loc) · 3.54 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
110
name: Python tests
on:
push:
branches: [ main, master ]
pull_request:
schedule:
- cron: "0 6 * * *" # Daily 6AM UTC build
permissions:
contents: read
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version:
["3.10", "3.11", "3.12", "3.13", "3.14"]
fail-fast: false
steps:
- uses: actions/checkout@v6.0.3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
cache: pip
- name: Install native dependencies (Ubuntu)
run: sudo apt-get update && sudo apt-get install -y libgpgme-dev libgpg-error-dev
if: "matrix.os == 'ubuntu-latest'"
- name: Provide gpgme-config and gpg-error-config
if: "matrix.os == 'ubuntu-latest'"
run: |
mkdir -p "$HOME/.local/bin"
cp .github/gpgme-config "$HOME/.local/bin/gpgme-config"
cp .github/gpg-error-config "$HOME/.local/bin/gpg-error-config"
echo "$HOME/.local/bin" >> $GITHUB_PATH
- name: Install dependencies
run: |
# Install build-time dependencies
python -m pip install --upgrade "setuptools>=77"
python -m pip install --upgrade pip
pip install --upgrade ".[merge,fastimport,paramiko,https,patiencediff,colordiff,range_diff]" setuptools-rust
- name: Install gpg on supported platforms
run: pip install --upgrade ".[pgp]"
if: "matrix.os == 'ubuntu-latest' && matrix.python-version != 'pypy3'"
- name: Style checks
run: |
pip install ".[dev]"
python -m ruff check .
python -m ruff format --check .
- name: Typing checks
run: |
pip install --upgrade types-paramiko types-requests
python -m mypy dulwich
if: "matrix.python-version != 'pypy3'"
- name: Build
run: |
python setup.py build_ext -i
env:
RUSTFLAGS: "-D warnings"
- name: Run Rust tests
run: |
cargo test
env:
RUSTFLAGS: "-D warnings"
- name: codespell
run: |
codespell --config .codespellrc .
- name: Coverage test suite run
run: |
pip install --upgrade coverage
python -m coverage run -p -m unittest tests.test_suite
- name: Property-based tests
run: |
pip install --upgrade ".[hypothesis]"
python -m unittest discover property_tests
env:
HYPOTHESIS_PROFILE: ci
- name: Run contrib tests
run: |
python -m unittest contrib.test_suite
test-minimal:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.10", "3.13"]
fail-fast: false
steps:
- uses: actions/checkout@v6.0.3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
cache: pip
- name: Install dependencies (minimal - no optional dependencies or Rust extensions)
run: |
python -m pip install --upgrade "setuptools>=77"
python -m pip install --upgrade pip
pip install --upgrade .
- name: Test suite run (minimal dependencies, pure Python)
run: |
python -m unittest tests.test_suite