github.com/billybanfield/evergreen@v0.0.0-20170525200750-eeee692790f7/command/ssh_testing_globals.go (about)

     1  package command
     2  
     3  import (
     4  	"os"
     5  )
     6  
     7  var (
     8  	// IMPORTANT: this key must be attached to the user below for
     9  	// passwordless ssh to localhost on the machine where the unit tests are
    10  	// run
    11  	TestRemoteKey = os.ExpandEnv("${HOME}/.ssh/mcitest")
    12  )
    13  
    14  const (
    15  	// IMPORTANT: this user must be configured for passwordless ssh to
    16  	// localhost on the machine where the unit tests are run, using the key
    17  	// above
    18  	TestRemoteUser = "mcitestuser"
    19  	TestRemote     = "localhost"
    20  )