Fix Pipenv creation file from unnecesary running of pipenv.

Co-authored-by: nilpointer <robertomartinezp@gmail.com>
This commit is contained in:
César Gallego Rodríguez
2019-09-04 12:31:16 +02:00
parent d56850e69e
commit 02929e0d49
3 changed files with 3 additions and 14 deletions
+1 -1
View File
@@ -10,7 +10,7 @@ install: test
go install github.com/BBVA/kapow/...
acceptance: install
pipenv run make -C spec/test
make -C spec/test
deps:
go install github.com/spf13/cobra
-11
View File
@@ -1,11 +0,0 @@
[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true
[dev-packages]
[packages]
[requires]
python_version = "3.7"
+2 -2
View File
@@ -3,8 +3,8 @@ package banner
import "testing"
func TestBanner(t *testing.T) {
ban := Banner()
if ban != "KAPOW!!!" {
ban := Banner("0.0.0")
if ban == "" {
t.Errorf("Banner expected KAPOW!!!, but got %v", ban)
t.Fail()
}