-
Notifications
You must be signed in to change notification settings - Fork 3
130 lines (120 loc) · 3.26 KB
/
test_code.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
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
130
name: Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
pre-commit:
name: Pre-commit
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- uses: pre-commit/[email protected]
run_regressions:
name: Test code
needs: pre-commit
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install uv
uses: astral-sh/setup-uv@v4
- name: Set up Python 3.12
run: uv python install 3.12
- name: Generate references from pypi version
run: bash generate_references.sh
working-directory: tests
- name: Install venv
run: uv venv
- name: Install dependencies
run: |
sudo apt-get install libglu1-mesa
uv pip install -e ".[dev]"
- name: Test
run: uv run pytest
# name: Test pre-commit, code and docs
# on:
# pull_request:
# push:
# branches:
# - main
# jobs:
# pre-commit:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# - uses: actions/setup-python@v5
# - uses: pre-commit/[email protected]
# test_code:
# needs: [pre-commit]
# runs-on: [ubuntu-latest]
# strategy:
# max-parallel: 12
# matrix:
# python-version: ["3.10"]
# os: [ubuntu-latest]
# steps:
# - uses: actions/checkout@v4
# - name: Set up Python ${{ matrix.python-version }}
# uses: actions/setup-python@v5
# with:
# python-version: ${{ matrix.python-version }}
# cache: "pip"
# cache-dependency-path: pyproject.toml
# - name: Install dependencies
# run: |
# make gmsh-ubuntu
# uv pip install -e .[tests]
# - name: Test with pytest
# run: pytest
# # test_code_coverage:
# # runs-on: ubuntu-latest
# # needs: [pre-commit]
# # steps:
# # - uses: actions/checkout@v4
# # - name: Set up Python
# # uses: actions/setup-python@v5
# # with:
# # python-version: '3.10'
# # - name: Install dependencies
# # run: |
# # pip install -e .[tests]
# # - name: Test with pytest
# # run: |
# # pytest --cov={{ cookiecutter.package_name }} {{ cookiecutter.package_name }}
# # - name: Upload coverage to Codecov
# # uses: codecov/codecov-action@v3
# # with:
# # token: ${{ secrets.CODECOV_TOKEN }}
# # fail_ci_if_error: false
# test_docs:
# needs: [pre-commit]
# runs-on: ${{ matrix.os }}
# strategy:
# max-parallel: 12
# matrix:
# python-version: ['3.10']
# os: [ubuntu-latest]
# steps:
# - uses: actions/checkout@v4
# - uses: conda-incubator/setup-miniconda@v3
# with:
# python-version: '3.10'
# mamba-version: "*"
# channels: conda-forge,defaults
# channel-priority: true
# activate-environment: anaconda-client-env
# - name: Add conda to system path
# run: |
# echo $CONDA/bin >> $GITHUB_PATH
# - name: Install dependencies
# run: |
# make dev
# - name: Test documentation
# run: |
# make docs