We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f76ce95 commit 0db859cCopy full SHA for 0db859c
tests/tests_unit/test_base.py
@@ -12,7 +12,7 @@
12
13
from cognite.client import ClientConfig, CogniteClient
14
from cognite.client.credentials import Token
15
-from cognite.client.data_classes import Feature, FeatureAggregate
+from cognite.client.data_classes import Feature, FeatureAggregate, Project
16
from cognite.client.data_classes._base import (
17
CogniteFilter,
18
CogniteLabelUpdate,
@@ -194,6 +194,8 @@ def test_dump_load_only_required(
194
[
195
pytest.param(class_, id=f"{class_.__name__} in {class_.__module__}")
196
for class_ in all_concrete_subclasses(WriteableCogniteResource)
197
+ # Project does not support as_write
198
+ if class_ is not Project
199
],
200
)
201
def test_writable_as_write(
0 commit comments