Skip to content

Commit 1360fbf

Browse files
committed
fix tests
1 parent 7792de4 commit 1360fbf

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,4 +56,4 @@ jobs:
5656
pip install -e .[server]
5757
pip install -e .[test]
5858
- 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/

tests/common/test_parser.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
"""Test parser functions that converts the incoming json from API into dataclass models."""
2+
23
import datetime
34
from dataclasses import dataclass
5+
from enum import Enum, IntEnum
46
from typing import Optional
5-
from enum import IntEnum, Enum
67

78
import pytest
89

@@ -98,7 +99,7 @@ def test_dataclass_from_dict():
9899
with pytest.raises(KeyError):
99100
raw2 = {**raw}
100101
del raw2["a"]
101-
dataclass_from_dict(BasicModel, raw2)
102+
dataclass_from_dict(BasicModel, raw2, strict=True)
102103
# test extra keys silently ignored in non-strict mode
103104
raw2 = {**raw}
104105
raw2["extrakey"] = "something"

0 commit comments

Comments
 (0)