Skip to content

Commit c6b846f

Browse files
chtruong814ko3n1g
andauthored
chore(beep boop 🤖): Bump uv.lock (main) (2025-08-18) (#330)
Signed-off-by: Oliver Koenig <okoenig@nvidia.com> Signed-off-by: oliver könig <okoenig@nvidia.com> Co-authored-by: ko3n1g <16716991+ko3n1g@users.noreply.github.com> Co-authored-by: oliver könig <okoenig@nvidia.com>
1 parent 2b45688 commit c6b846f

File tree

10 files changed

+262
-239
lines changed

10 files changed

+262
-239
lines changed

.github/actions/test-template/action.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,9 @@ runs:
6161
if: ${{ inputs.has-azure-credentials == 'true' }}
6262
shell: bash
6363
run: |
64+
echo ::group::Install Azure CLI
6465
curl -sL https://aka.ms/InstallAzureCLIDeb | sudo bash
66+
echo ::endgroup::
6567
6668
- name: Azure Login
6769
if: ${{ inputs.has-azure-credentials == 'true' }}
@@ -75,7 +77,9 @@ runs:
7577
if: ${{ inputs.has-azure-credentials == 'true' }}
7678
shell: bash
7779
run: |
80+
echo ::group::Azure ACR Login
7881
az acr login --name nemoci
82+
echo ::endgroup::
7983
8084
# - name: Azure Fileshare
8185
# if: ${{ inputs.has-azure-credentials == 'true' && inputs.is_unit_test == 'false' }}
@@ -141,11 +145,14 @@ runs:
141145
env:
142146
GH_TOKEN: ${{ inputs.PAT }}
143147
run: |
148+
echo ::group::Build test container
144149
docker build -f docker/Dockerfile.ci --build-arg INFERENCE_FRAMEWORK=${{ inputs.inference-framework }} --secret id=GH_TOKEN -t export-deploy .
150+
echo ::endgroup::
145151
146152
- name: Start container
147153
shell: bash
148154
run: |
155+
echo ::group::Start test container
149156
MNT_PATH=/mnt/datadrive # ${{ steps.azure-fileshare.outputs.mnt_path }}
150157
151158
ARG=("")
@@ -175,11 +182,13 @@ runs:
175182
176183
echo "$cmd" | tee "retry_job.sh"
177184
bash retry_job.sh
185+
echo ::endgroup::
178186
179187
- name: Create run-script
180188
id: create
181189
shell: bash
182190
run: |
191+
echo ::group::Create run-script
183192
COVERAGE_PREFIX=$([[ "${{ inputs.is_unit_test }}" == "true" ]] && echo "unit-test" || echo "e2e")
184193
echo "coverage-prefix=$COVERAGE_PREFIX" | tee -a "$GITHUB_OUTPUT"
185194
@@ -196,6 +205,7 @@ runs:
196205
197206
echo "timeout_in_seconds=$(( ${{ inputs.timeout }} * 60 ))" | tee -a "$GITHUB_OUTPUT"
198207
echo "$cmd" | tee "job.sh"
208+
echo ::endgroup::
199209
200210
- name: Run main script
201211
uses: nick-fields/retry@v3
@@ -212,6 +222,7 @@ runs:
212222
id: check
213223
shell: bash
214224
run: |
225+
echo ::group::Check result
215226
docker exec nemo_container_${{ github.run_id }} /opt/venv/bin/coverage combine || true
216227
docker exec nemo_container_${{ github.run_id }} /opt/venv/bin/coverage xml
217228
docker cp nemo_container_${{ github.run_id }}:/workspace/.coverage .coverage
@@ -234,11 +245,14 @@ runs:
234245
fi
235246
236247
exit $EXIT_CODE
248+
echo ::endgroup::
237249
238250
- name: Test coverage
239251
shell: bash -x -e -u -o pipefail {0}
240252
run: |
253+
echo ::group::Test coverage
241254
docker exec -t nemo_container_${{ github.run_id }} /opt/venv/bin/coverage report -i
255+
echo ::endgroup::
242256
243257
- name: Upload artifacts
244258
uses: actions/upload-artifact@v4

.github/workflows/cicd-main.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,7 @@ jobs:
3737
runs-on: ubuntu-latest
3838
needs: [pre-flight]
3939
if: |
40-
!(needs.pre-flight.outputs.is_ci_workload == 'true'
41-
|| needs.pre-flight.outputs.is_deployment_workflow == 'true'
40+
!(needs.pre-flight.outputs.is_deployment_workflow == 'true'
4241
|| needs.pre-flight.outputs.docs_only == 'true')
4342
steps:
4443
- name: Checkout

tests/functional_tests/L2_Launch_InFramework.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ coverage run \
2525
-o log_cli=true \
2626
-o log_cli_level=INFO \
2727
-vs -m "not pleasefixme" --tb=short tests/functional_tests/tests_inframework
28-
coverage combine
28+
coverage combine -q

tests/functional_tests/L2_Launch_TRTLLM.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ coverage run \
2525
-o log_cli=true \
2626
-o log_cli_level=INFO \
2727
-vs -m "not pleasefixme" --tb=short tests/functional_tests/tests_trtllm
28-
coverage combine
28+
coverage combine -q

tests/functional_tests/L2_Launch_vLLM.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ coverage run \
2525
-o log_cli=true \
2626
-o log_cli_level=INFO \
2727
-vs -m "not pleasefixme" --tb=short tests/functional_tests/tests_vllm
28-
coverage combine
28+
coverage combine -q

tests/functional_tests/L2_ONNX_TRT.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ coverage run \
2525
-o log_cli=true \
2626
-o log_cli_level=INFO \
2727
-vs -m "not pleasefixme" --tb=short tests/functional_tests/tests_onnx_trt
28-
coverage combine
28+
coverage combine -q

tests/functional_tests/L2_TRTLLM_API_Deploy_Query.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,4 @@
1515
coverage run -a --data-file=/workspace/.coverage --source=/workspace tests/functional_tests/utils/run_trtllm_api_deploy_query.py \
1616
--hf_model_path /home/TestData/hf/Llama-3.2-1B \
1717
--tensor_parallel_size 2
18+
coverage combine -q

tests/unit_tests/L0_Unit_Tests_CPU.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,4 @@ CUDA_VISIBLE_DEVICES="" NEMO_NUMBA_MINVER=0.53 coverage run -a \
1919
--data-file=/workspace/.coverage \
2020
--source=/workspace/ \
2121
-m pytest -sv tests/unit_tests/deploy tests/unit_tests/export -m "not pleasefixme" --cpu
22+
coverage combine -q

tests/unit_tests/L0_Unit_Tests_GPU.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,4 @@ CUDA_VISIBLE_DEVICES=0,1 NEMO_NUMBA_MINVER=0.53 coverage run -a \
1919
--data-file=/workspace/.coverage \
2020
--source=/workspace/ \
2121
-m pytest -sv tests/unit_tests/deploy tests/unit_tests/export -m "not pleasefixme"
22+
coverage combine -q

0 commit comments

Comments
 (0)