diff options
-rw-r--r-- | recipes-containers/netavark/files/run-ptest | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/recipes-containers/netavark/files/run-ptest b/recipes-containers/netavark/files/run-ptest index 41a37dce..7e017ae2 100644 --- a/recipes-containers/netavark/files/run-ptest +++ b/recipes-containers/netavark/files/run-ptest | |||
@@ -1,3 +1,8 @@ | |||
1 | #!/bin/bash | 1 | #!/bin/bash |
2 | 2 | ||
3 | NETAVARK=/usr/libexec/podman/netavark bats ./test/ | 3 | shopt -s extglob |
4 | |||
5 | # Skip the plugin tests because those example plugins are built only while | ||
6 | # running cargo test and for this to work as a ptest they would need to be cross | ||
7 | # compiled and installed as part of the ptest. | ||
8 | NETAVARK=/usr/libexec/podman/netavark bats test/!(*-plugin.bats) | ||