Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -486,7 +486,7 @@ pipeline {
withXTAG(["XCORE-AI-EXPLORER"]) { adapterIDs ->
sh "xtagctl reset ${adapterIDs[0]}"
dir("test/pipeline") {
sh "python -m pytest -m group0 -n auto --junitxml=pytest_result.xml -rA -v --durations=0 -o junit_logging=all --log-cli-level=INFO --adapter-id " + adapterIDs[0]
sh "python -m pytest -m group0 -n auto --reruns=1 --only-rerun=\"host app exited with error code -15\" --reruns-delay=1 --junitxml=pytest_result.xml -rA -v --durations=0 -o junit_logging=all --log-cli-level=INFO --adapter-id " + adapterIDs[0]
}
}
}
Expand Down Expand Up @@ -523,7 +523,7 @@ pipeline {
withXTAG(["XCORE-AI-EXPLORER"]) { adapterIDs ->
sh "xtagctl reset ${adapterIDs[0]}"
dir("test/pipeline") {
sh "python -m pytest -m group1 -n auto --junitxml=pytest_result.xml -rA -v --durations=0 -o junit_logging=all --log-cli-level=INFO "
sh "python -m pytest -m group1 -n auto --reruns=1 --only-rerun=\"host app exited with error code -15\" --reruns-delay=1 --junitxml=pytest_result.xml -rA -v --durations=0 -o junit_logging=all --log-cli-level=INFO "
}
}
}
Expand Down
4 changes: 4 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ packaging==24.1
# build
# matplotlib
# pytest
# pytest-rerunfailures
parso==0.8.4
# via jedi
pexpect==4.9.0
Expand Down Expand Up @@ -121,7 +122,10 @@ pyright==1.1.389
pytest==8.2.2
# via
# -r tools/requirements.in
# pytest-rerunfailures
# pytest-xdist
pytest-rerunfailures==14.0
# via -r tools/requirements.in
pytest-xdist==3.6.1
# via -r tools/requirements.in
python-dateutil==2.9.0.post0
Expand Down
1 change: 1 addition & 0 deletions tools/requirements.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
soundfile
pytest
pytest-xdist
pytest-rerunfailures
pyright
ruff
filelock
Expand Down