Skip to content

Commit 9cdd557

Browse files
committed
pip show --quiet
1 parent 30c4ed3 commit 9cdd557

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/installation.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
6060
printf y | sudo python3 -m install.uninstall
6161
62-
if pip show input-remapper; then
62+
if pip show input-remapper --quiet; then
6363
echo "Expected input-remapper package to be uninstalled"
6464
exit 1
6565
fi
@@ -82,7 +82,7 @@ jobs:
8282
run: |
8383
sudo python3 -m install --root / --components python_module
8484
85-
if ! pip show input-remapper; then
85+
if ! pip show input-remapper --quiet; then
8686
echo "Expected python module to be installed"
8787
exit 1
8888
fi
@@ -95,7 +95,7 @@ jobs:
9595
printf y | sudo python3 -m install.uninstall
9696
sudo python3 -m install --root / --components data_files
9797
98-
if pip show input-remapper; then
98+
if pip show input-remapper --quiet; then
9999
echo "Expected python module not to be installed"
100100
exit 1
101101
fi
@@ -108,7 +108,7 @@ jobs:
108108
printf y | sudo python3 -m install.uninstall
109109
sudo python3 -m install --root / --components python_module data_files
110110
111-
if ! pip show input-remapper; then
111+
if ! pip show input-remapper --quiet; then
112112
echo "Expected python module to be installed"
113113
exit 1
114114
fi

0 commit comments

Comments
 (0)