Skip to content

Commit

Permalink
I've removed redundant target from non-docker runs. Should work?
Browse files Browse the repository at this point in the history
  • Loading branch information
MoromugHSE committed Apr 1, 2024
1 parent 0921b38 commit 9b34698
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/steps/test-discover-repos.sh
Expand Up @@ -34,8 +34,8 @@ tex=${TARGET}/foo.tex
echo "${msg}"
echo "${msg}" | grep "Found 1 repositories in page #0"
echo "${msg}" | grep "Found 3 total repositories in GitHub"
test -s "${tex}"
test -e "${csv}"
test -s "${tex}"
test "$(wc -l < "${csv}" | xargs)" = '4'
test "$(head -1 "${csv}" | tr "," "\n" | wc -l | xargs)" = '8'
} > "${stdout}" 2>&1
Expand All @@ -47,8 +47,8 @@ echo "👍🏻 Small repositories discovery test is succeed"
echo "${msg}"
echo "${msg}" | grep "Found 60 total repositories in GitHub"
echo "${msg}" | grep "We will use only the first 35 repositories"
test -s "${tex}"
test -e "${csv}"
test -s "${tex}"
test "$(wc -l < "${csv}" | xargs)" = '36'
test "$(head -1 "${csv}" | tr "," "\n" | wc -l | xargs)" = '8'
} > "${stdout}" 2>&1
Expand Down

0 comments on commit 9b34698

Please sign in to comment.