blob: 8b3f97c33bfdbace0c12fd3dd931b995467f6247 [file] [log] [blame]
Igor Belikov9021bbe2016-09-28 19:22:20 +03001def call(String env=null) {
2 // Run tox with or without specified environment
3 if (env==null) {
4 sh "tox -v"
5 } else {
6 sh "tox -v -e ${env}"
7 }
8}