tests: Move cli tests behind a build flag

This is done to make go test ./... work for people using the sdk as a sdk.
Closes #1806
This commit is contained in:
ValarDragon
2018-07-25 13:47:00 -07:00
parent d6cd0d4acc
commit 496c75c35a
4 changed files with 12 additions and 7 deletions
+2
View File
@@ -1,3 +1,5 @@
// +build cli_test
package clitest
import (
+3
View File
@@ -0,0 +1,3 @@
package clitest
// package clitest runs integration tests which make use of CLI commands.