We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
docker
1 parent bd7e210 commit 83e2c95Copy full SHA for 83e2c95
.github/workflows/run-tests-action.yml
@@ -45,6 +45,17 @@ jobs:
45
uv venv --python 3.10
46
uv pip install -r tests/requirements.txt
47
48
+ - name: Check Docker version
49
+ run: docker --version
50
+
51
+ - name: Run INFERENCE_DLC container
52
+ if: inputs.group == 'aws-g4dn-2xlarge'
53
+ run: |
54
+ docker run --name test-container -d -it --gpus all -p 8080:8080 ${{ inputs.tgi-dlc }} --model-id TinyLlama/TinyLlama-1.1B-Chat-v1.0
55
+ sleep 60
56
+ docker stop test-container
57
+ docker rm test-container
58
59
- name: Run Hugging Face DLCs Tests
60
run: uv run pytest -s tests/
61
env:
0 commit comments