Suppress progress dots in zkg's output in Docker package-install check

These introduced unpredictability in the output, occasionally breaking the
test.
This commit is contained in:
Christian Kreibich 2022-04-21 12:40:48 -07:00
parent a49601d9fd
commit 8ba6016598

View file

@ -17,7 +17,9 @@ docker run --rm "${TEST_TAG}" btest --version | sed 's/^[0-9].*/XXX/g'
docker run --rm "${TEST_TAG}" zkg config docker run --rm "${TEST_TAG}" zkg config
# Check that a plugin can be installed. We pick any plugin with minimal deps here. # Check that a plugin can be installed. We pick any plugin with minimal deps here.
docker run --rm "${TEST_TAG}" zkg install --force sethhall/domain-tld | sed 's/(.*)/(XXX)/' docker run --rm "${TEST_TAG}" zkg install --force sethhall/domain-tld |
sed 's/"\.*$/"/' |
sed 's/(.*)/(XXX)/'
# Check that the Broker Python module loads # Check that the Broker Python module loads
docker run --rm "${TEST_TAG}" python3 -c "import broker" docker run --rm "${TEST_TAG}" python3 -c "import broker"