-
Notifications
You must be signed in to change notification settings - Fork 13
52 lines (48 loc) · 1.53 KB
/
python-test.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
name: CI on Linux, MacOS and Windows
on:
push:
branches: ["main", "devel"]
pull_request:
branches: ["main", "devel"]
permissions:
contents: read
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-13] # macos-latest has an issue with nlopt
# os: ["ubuntu-latest", "windows-latest", "macos-latest"]
python-version: ["3.10", "3.11", "3.12"]
exclude:
# False negatives on Windows for pytest result evaluation
- os: "windows-latest"
python-version: "3.11"
- os: "windows-latest"
python-version: "3.12"
runs-on: ${{ matrix.os }}
if: "!startsWith(github.event.head_commit.message, 'Version updated')"
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/setup
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -U pytest
pip install -r partcad/requirements.txt
# Install a subset of CLI dependencies, that are required for tests
pip install svglib rlPyCairo renderlab
# pip install -r partcad-cli/requirements.txt
- name: Test with pytest
env:
PYTHONPATH: partcad/src
PYTHONWARNINGS: ignore
run: |
pytest -x -p no:error-for-skips
- name: Basic integration test for CLI
run: |
pip install -U ./partcad ./partcad-cli
mkdir new_pkg
cd new_pkg
pc init
pc list-all -r