Gitiles
Code Review
Sign In
gerrit.mcp.mirantis.com
/
mcp-ci
/
pipeline-library
/
305e22210cdb8ae1a5f9e4de8cc7eb9af8a58e13
/
.
/
vars
/
runTox.groovy
blob: 8b3f97c33bfdbace0c12fd3dd931b995467f6247 [
file
] [
log
] [
blame
]
def
call
(
String
env
=
null
)
{
// Run tox with or without specified environment
if
(
env
==
null
)
{
sh
"tox -v"
}
else
{
sh
"tox -v -e ${env}"
}
}