You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: add ginkgo as a bingo dependency for catalogd
The tests were failing silently with the following error:
trace -vv test/upgrade
bash: line 1: trace: command not found
This issue occurred because Ginkgo was not found to execute the tests with the specified options. For example:
$(GINKGO) $(E2E_FLAGS) -trace -vv $(FOCUS) test/upgrade
This is directory which stores Go modules with pinned buildable package that is used within this repository, managed by https://github.com/bwplotka/bingo.
4
+
5
+
* Run `bingo get` to install all tools having each own module file in this directory.
6
+
* Run `bingo get <tool>` to install <tool> that have own module file in this directory.
7
+
* For Makefile: Make sure to put `include .bingo/Variables.mk` in your Makefile, then use $(<uppercasetoolname>) variable where <tool> is the .bingo/<tool>.mod.
8
+
* For shell: Run `source .bingo/variables.env` to source all environment variable for each tool.
9
+
* For go: Import `.bingo/variables.go` to for variable names.
10
+
* See https://github.com/bwplotka/bingo or -h on how to add, remove or change binaries dependencies.
0 commit comments