0
我想從Python3腳本運行Gradle。我可以從終端調用Gradle,但我無法弄清楚如何從Python腳本調用它。如何從Python3腳本運行Gradle
例如用於終端呼叫:
path gradle test --tests *SomeTest.someSpecificFeature*
我想從Python3腳本運行Gradle。我可以從終端調用Gradle,但我無法弄清楚如何從Python腳本調用它。如何從Python3腳本運行Gradle
例如用於終端呼叫:
path gradle test --tests *SomeTest.someSpecificFeature*
嘗試:
import os
os.system('path gradle test --tests *SomeTest.someSpecificFeature*')
可以以這樣的方式調用任何外殼命令。
在['os.system'](https://docs.python.org/2/library/os.html#os.system)看看。 – Michael