@@ -27,35 +27,35 @@ def read(*names, **kwargs):
27
27
28
28
class BuildWithPTH (build ):
29
29
def run (self , * args , ** kwargs ):
30
- build .run (self , * args , ** kwargs )
30
+ super () .run (* args , ** kwargs )
31
31
path = join (dirname (__file__ ), 'src' , 'pytest-cov.pth' )
32
32
dest = join (self .build_lib , basename (path ))
33
33
self .copy_file (path , dest )
34
34
35
35
36
36
class EasyInstallWithPTH (easy_install ):
37
37
def run (self , * args , ** kwargs ):
38
- easy_install .run (self , * args , ** kwargs )
38
+ super () .run (* args , ** kwargs )
39
39
path = join (dirname (__file__ ), 'src' , 'pytest-cov.pth' )
40
40
dest = join (self .install_dir , basename (path ))
41
41
self .copy_file (path , dest )
42
42
43
43
44
44
class InstallLibWithPTH (install_lib ):
45
45
def run (self , * args , ** kwargs ):
46
- install_lib .run (self , * args , ** kwargs )
46
+ super () .run (* args , ** kwargs )
47
47
path = join (dirname (__file__ ), 'src' , 'pytest-cov.pth' )
48
48
dest = join (self .install_dir , basename (path ))
49
49
self .copy_file (path , dest )
50
50
self .outputs = [dest ]
51
51
52
52
def get_outputs (self ):
53
- return chain (install_lib .get_outputs (self ), self .outputs )
53
+ return chain (super () .get_outputs (), self .outputs )
54
54
55
55
56
56
class DevelopWithPTH (develop ):
57
57
def run (self , * args , ** kwargs ):
58
- develop .run (self , * args , ** kwargs )
58
+ super () .run (* args , ** kwargs )
59
59
path = join (dirname (__file__ ), 'src' , 'pytest-cov.pth' )
60
60
dest = join (self .install_dir , basename (path ))
61
61
self .copy_file (path , dest )
0 commit comments