File tree Expand file tree Collapse file tree 3 files changed +1
-3
lines changed
src/huggingface_inference_toolkit Expand file tree Collapse file tree 3 files changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ check_dirs := src
55# run tests
66
77unit-test :
8- python3 -m pytest -s -v tests/unit -n 10 --log-cli-level=' DEBUG '
8+ RUN_SLOW=True python3 -m pytest -s -v tests/unit -n 10 --log-cli-level=' ERROR '
99
1010integ-test :
1111 python3 -m pytest -s -v tests/integ/
Original file line number Diff line number Diff line change @@ -212,7 +212,6 @@ def get_device():
212212 The get device function will return the device for the DL Framework.
213213 """
214214 gpu = _is_gpu_available ()
215- logger .info (f"GPU Available: { gpu } " )
216215
217216 if gpu :
218217 return 0
Original file line number Diff line number Diff line change 99 Imager
1010)
1111from PIL import Image
12- import logging
1312
1413def test_json_serialization ():
1514 t = {"res" : np .array ([2.0 ]), "text" : "I like you." , "float" : 1.2 }
You can’t perform that action at this time.
0 commit comments