diff --git a/.github/workflows/examples.yml b/.github/workflows/examples.yml index 3eff9651216..2fba693069d 100644 --- a/.github/workflows/examples.yml +++ b/.github/workflows/examples.yml @@ -98,8 +98,6 @@ jobs: with: python-version: "3.10" cache: pip - - name: cpuinfo - run: cat /proc/cpuinfo - name: Install NNCF and test requirements run: | pip install -e . @@ -115,14 +113,9 @@ jobs: --splitting-algorithm=least_duration \ --splits 4 \ --group ${{ matrix.group }} \ - ${{ github.event.inputs.pytest_args || '' }} - set ret=%ERRORLEVEL% - if %ret%==5 ( - if not "%{{ github.event.inputs.pytest_args || '' }}" == "" ( - exit 0 - ) - ) - exit %ret% + ${{ github.event.inputs.pytest_args || '-k 213213' }} + ret=$? + [ $ret -eq 5 ] && [ -n "${{ github.event.inputs.pytest_args || '' }}" ] && exit 0 || exit $ret env: TQDM_DISABLE: 1 - name: Test Summary