-
Notifications
You must be signed in to change notification settings - Fork 4
130 lines (109 loc) · 3.52 KB
/
Copy pathpytest.yml
File metadata and controls
130 lines (109 loc) · 3.52 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
name: eGSIM SMTK TESTS
on:
push:
branches: [ main, master ]
paths:
- '**/*.py'
- '**/*.yaml'
- '**/*.yml'
- '**/*.json'
pull_request:
branches: [ main, master ]
paths:
- '**/*.py'
- '**/*.yaml'
- '**/*.yml'
- '**/*.json'
jobs:
run-tests:
strategy:
matrix:
config:
- req-file: requirements-py311-linux64.txt
os: ubuntu-latest
python-version: "3.11"
- req-file: requirements-py311-macos_arm64.txt
os: macos-latest
python-version: "3.11"
# - req-file: requirements-py311-macos_x86_64.txt
# os: macos-13
# python-version: "3.11"
#
- req-file: requirements-py311-win64.txt
os: windows-latest
python-version: "3.11"
- req-file: requirements-py312-linux64.txt
os: ubuntu-latest
python-version: "3.12"
- req-file: requirements-py312-macos_arm64.txt
os: macos-latest
python-version: "3.12"
# - req-file: requirements-py312-macos_x86_64.txt
# os: macos-13
# python-version: "3.12"
#
- req-file: requirements-py312-win64.txt
os: windows-latest
python-version: "3.12"
# test latest python version ("3.x") for ubuntu and macos only:
# - req-file: requirements-py312-linux64.txt
# os: ubuntu-latest
# python-version: "3.x"
#
# - req-file: requirements-py312-macos_arm64.txt
# os: macos-latest
# python-version: "3.x"
runs-on: ${{ matrix.config.os }}
continue-on-error: ${{ matrix.config.os == 'windows-latest' }}
steps:
# Checkout repository
- name: Checkout repository
uses: actions/checkout@v4
- name: Install system packages
if: matrix.config.os == 'ubuntu-latest'
run: |
sudo apt-get update
sudo apt-get install -y \
build-essential \
gfortran \
libopenblas-dev \
liblapack-dev \
cmake \
pkg-config \
proj-bin \
proj-data \
libproj-dev
- name: Set up Python ${{ matrix.config.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.config.python-version }}
- name: Create virtualenv
run: python -m venv venv
- name: Install eGSIM smtk lib
if: matrix.config.os != 'windows-latest'
run: |
source venv/bin/activate
python -m pip install --upgrade pip setuptools wheel
pip install -r "./requirements/${{ matrix.config.req-file }}"
pip install .
- name: Install eGSIM smtk lib (Windows)
if: matrix.config.os == 'windows-latest'
shell: cmd
run: |
venv\Scripts\activate
python -m pip install --upgrade pip setuptools wheel
python -m pip install -r "requirements\${{ matrix.config.req-file }}"
python -m pip install .
- name: Test eGSIM (smtk lib)
if: matrix.config.os != 'windows-latest'
run: |
source venv/bin/activate
pip install pytest
pytest --ignore=./tests/tmp/ -xvvv ./tests/smtk
- name: Test eGSIM (smtk lib, Windows)
if: matrix.config.os == 'windows-latest'
shell: cmd
run: |
venv\Scripts\activate
pip install pytest
pytest --ignore=./tests/tmp/ -xvvv ./tests/smtk