Skip to content

Commit

Permalink
fixing lint
Browse files Browse the repository at this point in the history
  • Loading branch information
udaij12 committed Sep 10, 2024
1 parent d9960ca commit 7227b72
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions test/pytest/test_model_custom_dependencies.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import os
import pathlib
import subprocess
import platform
import subprocess

import requests
import pytest
import requests
import test_utils
from model_archiver import ModelArchiver, ModelArchiverConfig
from model_archiver.manifest_components.manifest import RuntimeType
Expand Down Expand Up @@ -141,7 +141,10 @@ def register_model_and_make_inference_request(expect_model_load_failure=False):
)
resp.raise_for_status()

@pytest.mark.skipif(platform.machine() == 'aarch64', reason="Test skipped on aarch64 architecture")

@pytest.mark.skipif(
platform.machine() == "aarch64", reason="Test skipped on aarch64 architecture"
)
def test_install_dependencies_to_target_directory_with_requirements():
test_utils.torchserve_cleanup()

Expand Down

0 comments on commit 7227b72

Please sign in to comment.