Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 21 additions & 1 deletion .vscode/cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@
"sdk/keyvault/azure-keyvault-keys/tests/keys.py",
"sdk/modelsrepository/azure-iot-modelsrepository/**",
"sdk/monitor/azure-monitor-query/**",
"sdk/purview/azure-purview-catalog/**",
"sdk/servicefabric/azure-servicefabric/**",
"sdk/search/azure-search-documents/**",
"sdk/storage/azure-storage-blob-changefeed/**",
Expand Down Expand Up @@ -858,6 +857,27 @@
"jsonify",
"ints"
]
},
{
"filename": "sdk/purview/azure-purview-catalog/azure/purview/catalog/aio/operations/*.py",
"words": [
"struct",
"STRUCT",
"nonly",
"nthe",
"reques"
]
},
{
"filename": "sdk/purview/azure-purview-catalog/azure/purview/catalog/operations/*.py",
"words": [
"struct",
"structdef",
"STRUCT",
"nonly",
"nthe",
"reques"
]
}
],
"allowCompoundWords": true
Expand Down
1 change: 1 addition & 0 deletions sdk/purview/azure-purview-catalog/tests/test_smoke.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ class TestPurviewCatalogSmoke(PurviewCatalogTest):
def test_basic_smoke_test(self, purviewcatalog_endpoint):
client = self.create_client(endpoint=purviewcatalog_endpoint)
response = client.types.get_all_type_definitions()
# cspell: disable-next-line
assert set(response.keys()) == set(['enumDefs', 'structDefs', 'classificationDefs', 'entityDefs', 'relationshipDefs','businessMetadataDefs'])

@recorded_by_proxy
Expand Down
3 changes: 2 additions & 1 deletion sdk/purview/azure-purview-catalog/tests/test_smoke_async.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,6 @@ class TestPurviewCatalogSmokeAsync(PurviewCatalogTestAsync):
async def test_basic_smoke_test(self, purviewcatalog_endpoint):
client = self.create_async_client(endpoint=purviewcatalog_endpoint)
response = await client.types.get_all_type_definitions()


# cspell: disable-next-line
assert set(response.keys()) == set(['enumDefs', 'structDefs', 'classificationDefs', 'entityDefs', 'relationshipDefs','businessMetadataDefs'])