-
Notifications
You must be signed in to change notification settings - Fork 7
49 lines (42 loc) · 1.26 KB
/
test.yaml
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
---
name: test
on: # yamllint disable-line rule:truthy
push:
branches: [master]
pull_request:
branches: [master]
workflow_dispatch: # allow manual triggering
jobs:
test:
runs-on: ubuntu-latest
name: Build and test
strategy:
matrix:
python-version: ['3.7', '3.12']
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install package and dependencies
run: |
pip install -r requirements.txt
pip install -e . # current package in editable mode
- name: Tests
run: |
pytest tests/test_boundary.py
pytest tests/test_combo.py
pytest tests/test_fresnel.py
pytest tests/test_grid.py
pytest tests/test_iad.py
pytest tests/test_layer.py
pytest tests/test_layers.py
pytest tests/test_nist.py
pytest tests/test_quadrature.py
pytest tests/test_redistribution.py
pytest tests/test_rxt.py
pytest tests/test_sphere.py
pytest tests/test_start.py
pytest tests/test_ur1_uru.py