feat #1342: support specify custom python3 venv

This commit is contained in:
debugtalk
2022-06-13 21:31:05 +08:00
parent abd31a8d88
commit fac6dc4955
35 changed files with 381 additions and 123 deletions
+4 -4
View File
@@ -6,25 +6,25 @@ import (
func TestGenDemoExamples(t *testing.T) {
dir := "../../../examples/demo-with-go-plugin"
err := CreateScaffold(dir, Go, true)
err := CreateScaffold(dir, Go, "", true)
if err != nil {
t.Fatal()
}
dir = "../../../examples/demo-with-py-plugin"
err = CreateScaffold(dir, Py, true)
err = CreateScaffold(dir, Py, "", true)
if err != nil {
t.Fatal()
}
dir = "../../../examples/demo-without-plugin"
err = CreateScaffold(dir, Ignore, true)
err = CreateScaffold(dir, Ignore, "", true)
if err != nil {
t.Fatal()
}
dir = "../../../examples/demo-empty-project"
err = CreateScaffold(dir, Empty, true)
err = CreateScaffold(dir, Empty, "", true)
if err != nil {
t.Fatal()
}