File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 41
41
alltests=($(target/release/rustpython -c 'from test.libregrtest.runtest import findtests; print(*findtests())'))
42
42
i=0
43
43
# chunk into chunks of 10 tests each. idk at this point
44
- while subtests=("${alltests[@]:$i:10}"); [[ ${#subtests[@]} -eq 0 ]]; do
44
+ while subtests=("${alltests[@]:$i:10}"); [[ ${#subtests[@]} -ne 0 ]]; do
45
45
LLVM_PROFILE_FILE="$PWD/regrtest-%p.profraw" target/release/rustpython -m test -v "${subtests[@]}"
46
46
done
47
47
continue-on-error : true
90
90
cd website
91
91
cp ../extra_tests/cpython_tests_results.json ./_data/regrtests_results.json
92
92
git add ./_data/regrtests_results.json
93
- git -c user.name="Github Actions" -c user.email="[email protected] " commit -m "Update regression test results" --author="$GITHUB_ACTOR"
94
- git push
93
+ git -c user.name="Github Actions" -c user.email="[email protected] " commit -m "Update regression test results" --author="$GITHUB_ACTOR" && \
94
+ git push
95
95
96
96
whatsleft :
97
97
name : Collect what is left data
You can’t perform that action at this time.
0 commit comments