Skip to content

Commit 0852518

Browse files
committed
Use prysk instead of cram for tests
And do not assume we know best on how it should be installed.
1 parent 9cfd022 commit 0852518

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

bin/test.sh

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,12 @@ test "$(uname -s)-$(uname -p)" = Linux-x86_64 || {
99
exit 1
1010
}
1111

12-
if ! command -v cram >/dev/null 2>&1
12+
if ! command -v prysk >/dev/null 2>&1
1313
then
14-
echo '== Installing cram =='
15-
pip install --user cram==0.6
14+
echo '[ERROR] Please install prysk. One easy way is via pipx:'
15+
echo
16+
echo ' pipx install prysk'
17+
exit 2
1618
fi
1719

18-
cram test
20+
prysk test

0 commit comments

Comments
 (0)