File tree Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ dependencies = [
1414description = " Add your description here"
1515name = " async-python-sprint-1"
1616readme = " README.md"
17- requires-python = " >=3.13 "
17+ requires-python = " >=3.12 "
1818version = " 0.5.0"
1919
2020[tool .coverage .run ]
Original file line number Diff line number Diff line change 66from src .schemas .dto import TransformedDayDTO , TransformTaskDTO
77
88
9+ @pytest .fixture (autouse = True )
10+ def set_env_vars (monkeypatch ):
11+ monkeypatch .setenv ("PYTHON_VER_MIN_MAJOR" , "3" )
12+ monkeypatch .setenv ("PYTHON_VER_MIN_MINOR" , "9" )
13+
14+
915@pytest .fixture
1016def mock_transformed_data ():
1117 return [
Original file line number Diff line number Diff line change 77from src .schemas .weather_response import WeatherResponse
88
99
10- class WeatherResponseFactory (ModelFactory [WeatherResponse ]): ...
10+ class WeatherResponseFactory (ModelFactory [WeatherResponse ]):
11+ __random_seed__ = 1
1112
1213
1314@pytest .fixture
You can’t perform that action at this time.
0 commit comments