We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e3c08d commit 91db3c6Copy full SHA for 91db3c6
payjoin/contrib/test.sh
@@ -1,5 +1,12 @@
1
#!/usr/bin/env bash
2
set -e
3
4
+features=("v1" "v2")
5
+
6
cargo test --locked --package payjoin --verbose --all-features --lib
7
cargo test --locked --package payjoin --verbose --all-features --test integration
8
9
+for feature in "${features[@]}"; do
10
+ cargo test --locked --package payjoin --verbose --no-default-features --features "$feature" --lib
11
+ cargo test --locked --package payjoin --verbose --no-default-features --features "$feature" --test integration
12
+done
0 commit comments