Skip to content

Commit faae3fa

Browse files
committed
Organizing tests a bit better; Defining pydantic as sole dependency.
1 parent e33b086 commit faae3fa

File tree

4 files changed

+3
-2
lines changed

4 files changed

+3
-2
lines changed

pyproject.toml

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ classifiers = [
1919
]
2020
requires-python = ">=3.8"
2121
dependencies = [
22+
"pydantic >= 2",
2223
]
2324
dynamic = ["version"]
2425

pytest.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[pytest]
2-
norecursedirs=dist build .tox .eggs
2+
norecursedirs=dist build .tox .eggs fixtures
33
addopts=
44
--doctest-modules
55
--import-mode importlib

tests/conftest.py

Whitespace-only changes.

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ deps =
44
setenv =
55
PYTHONWARNDEFAULTENCODING = 1
66
commands =
7-
pytest {posargs}
7+
pytest {posargs} tests
88
usedevelop = True
99
extras =
1010
testing

0 commit comments

Comments
 (0)