We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2c3b29 commit b9805d2Copy full SHA for b9805d2
src/test/groovy/ru/vyarus/gradle/plugin/python/task/PythonTaskKitTest.groovy
@@ -224,8 +224,10 @@ class PythonTaskKitTest extends AbstractKitTest {
224
"""
225
226
when: "run task"
227
+ def env = new HashMap(System.getenv())
228
+ env.put('some', 'foo')
229
BuildResult result = gradle('sample')
- .withEnvironment(['some': 'foo', 'PATH': System.getenv('PATH')])
230
+ .withEnvironment(env)
231
.build()
232
233
then: "executed"
0 commit comments