mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-14 11:03:09 +02:00
ffc931aad1
* Added unit tag as argument. Added description to runTests command. Changed code generator to have unit build tag in generated unit test files. * Added unit build tag to all unit test files. * added to new unit test unit build tag * Update verify-go.yml * small fix --------- Co-authored-by: Muhammadali Nazarov <Muhammadali.Nazarov@acronis.com> Co-authored-by: Christopher Fenner <26137398+CCFenner@users.noreply.github.com>
17 lines
202 B
Go
17 lines
202 B
Go
//go:build unit
|
|
// +build unit
|
|
|
|
package orchestrator
|
|
|
|
import (
|
|
"os"
|
|
"strings"
|
|
)
|
|
|
|
func resetEnv(e []string) {
|
|
for _, val := range e {
|
|
tmp := strings.Split(val, "=")
|
|
os.Setenv(tmp[0], tmp[1])
|
|
}
|
|
}
|