InstallPlugin   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 3
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 3
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A run() 0 2 1
1
from lib import action
2
3
4
class InstallPlugin(action.JenkinsBaseAction):
5
    def run(self, plugin):
6
        return self.jenkins.install_plugin(plugin, include_dependencies='True')
7