Skip to content

Commit

Permalink
Make pip quiet
Browse files Browse the repository at this point in the history
  • Loading branch information
atobiszei committed Oct 11, 2023
1 parent 90a27c0 commit 7db8f3d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ $(ACTIVATE):
@test -d $(VIRTUALENV_DIR) || $(VIRTUALENV_EXE) $(VIRTUALENV_DIR)
@. $(ACTIVATE); pip3 install --upgrade pip
@. $(ACTIVATE); pip3 install -vUqq setuptools
@. $(ACTIVATE); pip3 install -r tests/requirements.txt
@. $(ACTIVATE); pip3 install -qq -r tests/requirements.txt
@touch $(ACTIVATE)

cppclean: venv
Expand Down
4 changes: 2 additions & 2 deletions tests/functional/test_model_version_policy.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ def test_get_model_metadata_rest(self, model_version_policy_models,
metadata_pb = get_model_metadata_pb2. \
GetModelMetadataResponse()
response = Parse(output_json, metadata_pb,
ignore_unknown_fields=False)
ignore_unknown_fields=True)
input_metadata, output_metadata = model_metadata_response(
response=response)

Expand Down Expand Up @@ -224,7 +224,7 @@ def test_get_model_status_rest(self, model_version_policy_models,
output_json = result.text
status_pb = get_model_status_pb2.GetModelStatusResponse()
response = Parse(output_json, status_pb,
ignore_unknown_fields=True)
ignore_unknown_fields=False)
versions_statuses = response.model_version_status
version_status = versions_statuses[0]
assert version_status.version == versions[x]
Expand Down

0 comments on commit 7db8f3d

Please sign in to comment.