Skip to content

Commit 31f9d64

Browse files
test: add pytest boilerplate
1 parent 2708978 commit 31f9d64

File tree

3 files changed

+12
-1
lines changed

3 files changed

+12
-1
lines changed

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ dev = [
1616
"flake8",
1717
"Flake8-pyproject",
1818
"mypy",
19+
"pytest",
1920
]
2021

2122
[project.scripts]

requirements_dev.txt

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ flake8==7.1.1
1414
# oc4ids-datastore-pipeline (pyproject.toml)
1515
flake8-pyproject==1.2.3
1616
# via oc4ids-datastore-pipeline (pyproject.toml)
17+
iniconfig==2.0.0
18+
# via pytest
1719
isort==6.0.0
1820
# via oc4ids-datastore-pipeline (pyproject.toml)
1921
mccabe==0.7.0
@@ -25,14 +27,20 @@ mypy-extensions==1.0.0
2527
# black
2628
# mypy
2729
packaging==24.2
28-
# via black
30+
# via
31+
# black
32+
# pytest
2933
pathspec==0.12.1
3034
# via black
3135
platformdirs==4.3.6
3236
# via black
37+
pluggy==1.5.0
38+
# via pytest
3339
pycodestyle==2.12.1
3440
# via flake8
3541
pyflakes==3.2.0
3642
# via flake8
43+
pytest==8.3.4
44+
# via oc4ids-datastore-pipeline (pyproject.toml)
3745
typing-extensions==4.12.2
3846
# via mypy

tests/test_pipeline.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
def test_hello_world() -> None:
2+
pass

0 commit comments

Comments
 (0)