-
Notifications
You must be signed in to change notification settings - Fork 39
88 lines (83 loc) · 2.61 KB
/
test_package.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
# Test the pyexiv2 packages uploaded to pypi.org .
name: Test package
on:
release:
types: [published]
workflow_dispatch:
jobs:
job1:
name: Test package on ubuntu
strategy:
fail-fast: false
matrix:
os: [ubuntu-22.04]
python_version: [3.7, 3.8, 3.9, '3.10', '3.11', '3.12']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python_version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python_version }}
- name: Install dependencies
run: |
python -m pip install pyexiv2==2.15.0
python -m pip install pytest psutil
- name: Test
run: |
python -c "import os; os.remove('pyexiv2/__init__.py')" # Disable pyexiv2 in the repository, to use only the installed pyexiv2
python -c "from pyexiv2 import Image; print(Image.__doc__)"
pytest -v
env:
PYEXIV2_MODULE: pyexiv2
job2:
name: Test package
strategy:
fail-fast: false
matrix:
os: [macos-14]
python_version: [3.8, 3.9, '3.10', '3.11', '3.12']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python_version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python_version }}
- name: Install dependencies
run: |
python -m pip install pyexiv2==2.15.0
python -m pip install pytest psutil
- name: Test
run: |
brew install inih
python -c "import os; os.remove('pyexiv2/__init__.py')" # Disable pyexiv2 in the repository, to use only the installed pyexiv2
python -c "from pyexiv2 import Image; print(Image.__doc__)"
pytest -v
env:
PYEXIV2_MODULE: pyexiv2
job3:
name: Test package
strategy:
fail-fast: false
matrix:
os: [windows-2019]
python_version: [3.7, 3.8, 3.9, '3.10', '3.11', '3.12']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python_version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python_version }}
- name: Install dependencies
run: |
python -m pip install pyexiv2==2.15.0
python -m pip install pytest psutil
- name: Test
run: |
python -c "import os; os.remove('pyexiv2/__init__.py')" # Disable pyexiv2 in the repository, to use only the installed pyexiv2
python -c "from pyexiv2 import Image; print(Image.__doc__)"
pytest -v
env:
PYEXIV2_MODULE: pyexiv2