File tree 2 files changed +4
-3
lines changed
2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 56
56
pip install -e .[server]
57
57
pip install -e .[test]
58
58
- name : Pytest
59
- run : pytest --durations 10 --cov-report term-missing --cov=matter_server --cov-report=xml tests/server/
59
+ run : pytest --durations 10 --cov-report term-missing --cov=matter_server --cov-report=xml tests/
Original file line number Diff line number Diff line change 1
1
"""Test parser functions that converts the incoming json from API into dataclass models."""
2
+
2
3
import datetime
3
4
from dataclasses import dataclass
5
+ from enum import Enum , IntEnum
4
6
from typing import Optional
5
- from enum import IntEnum , Enum
6
7
7
8
import pytest
8
9
@@ -98,7 +99,7 @@ def test_dataclass_from_dict():
98
99
with pytest .raises (KeyError ):
99
100
raw2 = {** raw }
100
101
del raw2 ["a" ]
101
- dataclass_from_dict (BasicModel , raw2 )
102
+ dataclass_from_dict (BasicModel , raw2 , strict = True )
102
103
# test extra keys silently ignored in non-strict mode
103
104
raw2 = {** raw }
104
105
raw2 ["extrakey" ] = "something"
You can’t perform that action at this time.
0 commit comments