Skip to content

Commit

Permalink
t
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexanderDokuchaev committed Nov 26, 2024
1 parent 0362a11 commit 7bf8932
Showing 1 changed file with 3 additions and 10 deletions.
13 changes: 3 additions & 10 deletions .github/workflows/examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 .
Expand All @@ -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
Expand Down

0 comments on commit 7bf8932

Please sign in to comment.