Skip to content

Commit 9961028

Browse files
committed
.
1 parent 9066e50 commit 9961028

2 files changed

Lines changed: 2 additions & 7 deletions

File tree

.github/workflows/job_gpu_tests.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@ jobs:
5959
INSTALL_TEST_DIR: ${{ github.workspace }}/install/tests
6060
BUILD_DIR: ${{ github.workspace }}/build
6161
MODELS_PATH: ${{ github.workspace }}/testdata
62-
GTEST_PARALLEL_SCRIPT: /usr/local/bin/gtest_parallel.py
6362
NODE_EXTRA_CA_CERTS: /usr/local/share/ca-certificates/IntelProxyRootCA-Base64.crt
6463
NEO_CACHE_DIR: /root/.cache/neo_compiler_cache
6564
NEO_CACHE_MAX_SIZE: 10737418240 # 10GB
@@ -147,11 +146,7 @@ jobs:
147146
test_filter='*smoke*'
148147
fi
149148
150-
if [[ "${TEST_TYPE}" == 'unit' ]]; then
151-
${INSTALL_TEST_DIR}/ov_gpu_unit_tests --report_unique_name --gtest_filter="${test_filter}"
152-
else
153-
python3 ${GTEST_PARALLEL_SCRIPT} ${INSTALL_TEST_DIR}/ov_gpu_"${TEST_TYPE}"_tests --dump_json_test_results=${INSTALL_TEST_DIR}/${TEST_RESULTS_DIR}/ov_gpu_"${TEST_TYPE}"_tests.json -- --report_unique_name --gtest_filter="${test_filter}"
154-
fi
149+
${INSTALL_TEST_DIR}/ov_gpu_"${TEST_TYPE}"_tests --report_unique_name --gtest_filter="${test_filter}"
155150
156151
- name: Upload Test Results
157152
uses: ababushk/upload-artifact@ebc7d74ace101c08868aed05dba2aaf274b9a2c7 # main

.github/workflows/ubuntu_22.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -646,7 +646,7 @@ jobs:
646646
with:
647647
device: 'igpu'
648648
test_type: ${{ matrix.TEST_TYPE }}
649-
test_filter: ${{ github.event_name == 'pull_request' && matrix.TEST_TYPE == 'unit' && '*pooling_forward_gpu*-*basic_max_pooling_int8*' || '' }}
649+
test_filter: ${{ github.event_name == 'pull_request' && (matrix.TEST_TYPE == 'unit' && '*pooling_forward_gpu*-*basic_max_pooling_int8*' || '*KVCacheTests*smoke*') || '' }}
650650
runner: "[ 'self-hosted', 'igpu', 'Linux' ]"
651651
runner-group: 'Intel-GPU'
652652
image: ${{ fromJSON(needs.docker.outputs.images).ov_test.ubuntu_22_04_x64_igpu }}

0 commit comments

Comments
 (0)