File tree Expand file tree Collapse file tree 3 files changed +12
-1
lines changed Expand file tree Collapse file tree 3 files changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ dev = [
16
16
" flake8" ,
17
17
" Flake8-pyproject" ,
18
18
" mypy" ,
19
+ " pytest" ,
19
20
]
20
21
21
22
[project .scripts ]
Original file line number Diff line number Diff line change @@ -14,6 +14,8 @@ flake8==7.1.1
14
14
# oc4ids-datastore-pipeline (pyproject.toml)
15
15
flake8-pyproject==1.2.3
16
16
# via oc4ids-datastore-pipeline (pyproject.toml)
17
+ iniconfig==2.0.0
18
+ # via pytest
17
19
isort==6.0.0
18
20
# via oc4ids-datastore-pipeline (pyproject.toml)
19
21
mccabe==0.7.0
@@ -25,14 +27,20 @@ mypy-extensions==1.0.0
25
27
# black
26
28
# mypy
27
29
packaging==24.2
28
- # via black
30
+ # via
31
+ # black
32
+ # pytest
29
33
pathspec==0.12.1
30
34
# via black
31
35
platformdirs==4.3.6
32
36
# via black
37
+ pluggy==1.5.0
38
+ # via pytest
33
39
pycodestyle==2.12.1
34
40
# via flake8
35
41
pyflakes==3.2.0
36
42
# via flake8
43
+ pytest==8.3.4
44
+ # via oc4ids-datastore-pipeline (pyproject.toml)
37
45
typing-extensions==4.12.2
38
46
# via mypy
Original file line number Diff line number Diff line change
1
+ def test_hello_world () -> None :
2
+ pass
You can’t perform that action at this time.
0 commit comments