mirror of
https://github.com/redhat-developer/odo.git
synced 2025-10-19 03:06:19 +03:00
* update go version to 1.17 Signed-off-by: anandrkskd <anandrkskd@gmail.com> * update go version to 1.17 and fix failure Signed-off-by: anandrkskd <anandrkskd@gmail.com>
16 lines
352 B
Go
16 lines
352 B
Go
//go:build !race && (linux || darwin || dragonfly || solaris || openbsd || netbsd || freebsd)
|
|
// +build !race
|
|
// +build linux darwin dragonfly solaris openbsd netbsd freebsd
|
|
|
|
package interactive
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/redhat-developer/odo/tests/helper"
|
|
)
|
|
|
|
func TestInteractive(t *testing.T) {
|
|
helper.RunTestSpecs(t, "Interactive Suite")
|
|
}
|