Fix Pipenv creation file from unnecesary running of pipenv.
Co-authored-by: nilpointer <robertomartinezp@gmail.com>
This commit is contained in:
@@ -10,7 +10,7 @@ install: test
|
|||||||
go install github.com/BBVA/kapow/...
|
go install github.com/BBVA/kapow/...
|
||||||
|
|
||||||
acceptance: install
|
acceptance: install
|
||||||
pipenv run make -C spec/test
|
make -C spec/test
|
||||||
|
|
||||||
deps:
|
deps:
|
||||||
go install github.com/spf13/cobra
|
go install github.com/spf13/cobra
|
||||||
|
|||||||
@@ -1,11 +0,0 @@
|
|||||||
[[source]]
|
|
||||||
name = "pypi"
|
|
||||||
url = "https://pypi.org/simple"
|
|
||||||
verify_ssl = true
|
|
||||||
|
|
||||||
[dev-packages]
|
|
||||||
|
|
||||||
[packages]
|
|
||||||
|
|
||||||
[requires]
|
|
||||||
python_version = "3.7"
|
|
||||||
@@ -3,8 +3,8 @@ package banner
|
|||||||
import "testing"
|
import "testing"
|
||||||
|
|
||||||
func TestBanner(t *testing.T) {
|
func TestBanner(t *testing.T) {
|
||||||
ban := Banner()
|
ban := Banner("0.0.0")
|
||||||
if ban != "KAPOW!!!" {
|
if ban == "" {
|
||||||
t.Errorf("Banner expected KAPOW!!!, but got %v", ban)
|
t.Errorf("Banner expected KAPOW!!!, but got %v", ban)
|
||||||
t.Fail()
|
t.Fail()
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user