Skip to content

Commit

Permalink
Temporarily skip fee-currency e2e tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ezdac committed Sep 10, 2024
1 parent 14f108c commit d57d806
Showing 1 changed file with 13 additions and 6 deletions.
19 changes: 13 additions & 6 deletions e2e_test/run_all_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,22 @@ failures=0
tests=0
for f in test_*"$TEST_GLOB"*
do
echo -e "\nRun $f"
if "./$f"
# temporarily skip fee-currency related tests
if (echo "$f" | grep -q -e fee_currency )
then
tput setaf 2 || true
echo "PASS $f"
echo "SKIP $f"
else
tput setaf 1 || true
echo "FAIL $f"
((failures++)) || true
echo -e "\nRun $f"
if "./$f"
then
tput setaf 2 || true
echo "PASS $f"
else
tput setaf 1 || true
echo "FAIL $f"
((failures++)) || true
fi
fi
tput sgr0 || true
((tests++)) || true
Expand Down

0 comments on commit d57d806

Please sign in to comment.