summaryrefslogtreecommitdiff
path: root/vendor/github.com
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2021-03-19 08:06:04 -0700
committerGitHub <noreply@github.com>2021-03-19 08:06:04 -0700
commit5325957d536be3515fb7a782e4755afca38fca4c (patch)
tree4fa12237bd90231119ee67b8b7bda532b2465bdc /vendor/github.com
parent61e3b152fcc591a85f2bd4872911a0997cca75c0 (diff)
parenta596d1f5d006680da2a1af6d11415e18efee0f3b (diff)
downloadpodman-5325957d536be3515fb7a782e4755afca38fca4c.tar.gz
podman-5325957d536be3515fb7a782e4755afca38fca4c.tar.bz2
podman-5325957d536be3515fb7a782e4755afca38fca4c.zip
Merge pull request #9735 from containers/dependabot/go_modules/github.com/onsi/ginkgo-1.15.2
Bump github.com/onsi/ginkgo from 1.15.1 to 1.15.2
Diffstat (limited to 'vendor/github.com')
-rw-r--r--vendor/github.com/onsi/ginkgo/CHANGELOG.md5
-rw-r--r--vendor/github.com/onsi/ginkgo/README.md2
-rw-r--r--vendor/github.com/onsi/ginkgo/config/config.go10
3 files changed, 14 insertions, 3 deletions
diff --git a/vendor/github.com/onsi/ginkgo/CHANGELOG.md b/vendor/github.com/onsi/ginkgo/CHANGELOG.md
index 686189dd6..623b1ad37 100644
--- a/vendor/github.com/onsi/ginkgo/CHANGELOG.md
+++ b/vendor/github.com/onsi/ginkgo/CHANGELOG.md
@@ -1,3 +1,8 @@
+## 1.15.2
+
+### Fixes
+- ignore blank `-focus` and `-skip` flags (#780) [e90a4a0]
+
## 1.15.1
### Fixes
diff --git a/vendor/github.com/onsi/ginkgo/README.md b/vendor/github.com/onsi/ginkgo/README.md
index 5d56adba0..008cbcb75 100644
--- a/vendor/github.com/onsi/ginkgo/README.md
+++ b/vendor/github.com/onsi/ginkgo/README.md
@@ -62,6 +62,8 @@ Describe("the strings package", func() {
- [Completions for VSCode](https://github.com/onsi/vscode-ginkgo): just use VSCode's extension installer to install `vscode-ginkgo`.
+- [Ginkgo tools for VSCode](https://marketplace.visualstudio.com/items?itemName=joselitofilho.ginkgotestexplorer): just use VSCode's extension installer to install `ginkgoTestExplorer`.
+
- Straightforward support for third-party testing libraries such as [Gomock](https://code.google.com/p/gomock/) and [Testify](https://github.com/stretchr/testify). Check out the [docs](https://onsi.github.io/ginkgo/#third-party-integrations) for details.
- A modular architecture that lets you easily:
diff --git a/vendor/github.com/onsi/ginkgo/config/config.go b/vendor/github.com/onsi/ginkgo/config/config.go
index 8a2479824..d2857a7ef 100644
--- a/vendor/github.com/onsi/ginkgo/config/config.go
+++ b/vendor/github.com/onsi/ginkgo/config/config.go
@@ -20,7 +20,7 @@ import (
"fmt"
)
-const VERSION = "1.15.1"
+const VERSION = "1.15.2"
type GinkgoConfigType struct {
RandomSeed int64
@@ -219,10 +219,14 @@ func BuildFlagArgs(prefix string, ginkgo GinkgoConfigType, reporter DefaultRepor
// flagFocus implements the -focus flag.
func flagFocus(arg string) {
- GinkgoConfig.FocusStrings = append(GinkgoConfig.FocusStrings, arg)
+ if arg != "" {
+ GinkgoConfig.FocusStrings = append(GinkgoConfig.FocusStrings, arg)
+ }
}
// flagSkip implements the -skip flag.
func flagSkip(arg string) {
- GinkgoConfig.SkipStrings = append(GinkgoConfig.SkipStrings, arg)
+ if arg != "" {
+ GinkgoConfig.SkipStrings = append(GinkgoConfig.SkipStrings, arg)
+ }
}