Skip to content

Commit

Permalink
Don't try to use test-css command in CI.
Browse files Browse the repository at this point in the history
  • Loading branch information
jdm committed Nov 12, 2018
1 parent e94d1c4 commit 83f6432
Showing 1 changed file with 10 additions and 12 deletions.
22 changes: 10 additions & 12 deletions etc/ci/check_intermittents.sh
Expand Up @@ -9,16 +9,14 @@ set -o nounset
set -o pipefail
REPEAT_COUNT=100

for test_type in wpt css; do
while read test_name; do
echo " - Checking ${test_name}"
./mach "test-${test_type}" \
--release \
--log-raw - \
--repeat "${REPEAT_COUNT}" \
"${test_name}" \
> intermittents.log \
< /dev/null
done < "etc/ci/former_intermittents_${test_type}.txt"
done
while read test_name; do
echo " - Checking ${test_name}"
./mach "test-${test_type}" \
--release \
--log-raw - \
--repeat "${REPEAT_COUNT}" \
"${test_name}" \
> intermittents.log \
< /dev/null
done < "etc/ci/former_intermittents_wpt.txt"

0 comments on commit 83f6432

Please sign in to comment.