Skip to content

Commit 8e2a8ed

Browse files
authored
Merge pull request #17 from X-ray-interferometry/dev
Dev
2 parents 32e7a9c + 7508b85 commit 8e2a8ed

10 files changed

Lines changed: 2674 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,3 +40,7 @@ jobs:
4040
- name: Lint with ruff
4141
run: |
4242
ruff check
43+
- name: Run unit tests
44+
run: |
45+
pytest
46+

pyproject.toml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ dependencies = [
1919
[project.optional-dependencies]
2020
dev = [
2121
"ruff~=0.13.2",
22+
"pytest~=9.0",
2223
]
2324

2425
[build-system]
@@ -43,5 +44,8 @@ where = ["src"]
4344

4445
[tool.ruff]
4546
# Ignore the auto-generated file
46-
include = ["src/curtains/*.py"]
47+
include = ["src/curtains/*.py", "tests/*.py"]
4748
exclude = ["src/curtains/version.py"]
49+
50+
[tool.pytest.ini_options]
51+
testpaths = ["tests"]

simple_example.ipynb

Lines changed: 539 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)