-
Notifications
You must be signed in to change notification settings - Fork 68
70 lines (49 loc) · 1.38 KB
/
tests.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
name: tests
on:
push:
paths:
- '**.py' # only run workflow when source files changed
pull_request:
branches:
- master
paths:
- '**.py'
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10"]
steps:
- name: Check out repo
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
run: pip install uv
- name: Install dependencies
run: uv pip install .[test] --system
- name: Test_general
run: pytest tests/test_all.py
- name: Test_crystal
run: pytest tests/test_crystal.py
- name: Test_lattice
run: pytest tests/test_lattice.py
- name: Test_molecule
run: pytest tests/test_molecule.py
- name: Test_wyckoff
run: pytest tests/test_wyckoff.py
- name: Test_symmetry
run: pytest tests/test_symmetry.py
- name: Test_group
run: pytest tests/test_group.py
- name: Test_lego
run: pytest tests/test_lego.py
- name: Test_supergroup
run: pytest tests/test_supergroup.py
- name: Test_so3
run: pytest tests/test_SO3.py
#- name: Test_xrd
# run: pytest tests/test_xrd.py