Skip to content
Closed
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
3 changes: 3 additions & 0 deletions tests/integration/file/test_file_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,9 @@ def random_filename_extn() -> str:
@pytest.mark.enterprise
@pytest.mark.integration
class TestFileClient:
@pytest.mark.skip(
reason="Server returns 'searchFiles' operation not modeled in V1Operations."
)
def test__api_info__returns(self, client: FileClient):
api_info = client.api_info()
assert len(api_info.dict()) != 0
Expand Down
3 changes: 3 additions & 0 deletions tests/integration/spec/test_spec.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,9 @@ def create_specs_for_query(create_specs, product):
@pytest.mark.integration
@pytest.mark.enterprise
class TestSpec:
@pytest.mark.skip(
reason="Server returns 'getSpecification' operation not modeled in V1Operations."
)
def test__api_info__returns(self, client: SpecClient):
response = client.api_info()
assert len(response.dict()) != 0
Expand Down
Loading