(self)
| 142 | """在标准安装完成后执行自定义命令""" |
| 143 | |
| 144 | def run(self): |
| 145 | # 先执行标准安装步骤 |
| 146 | install.run(self) |
| 147 | # 执行自定义命令 |
| 148 | subprocess.check_call(["opentelemetry-bootstrap", "-a", "install"]) |
| 149 | |
| 150 | |
| 151 | def load_requirements(): |
no outgoing calls
no test coverage detected