Regression tests
This commit is contained in:
parent
eef665c896
commit
b003a2b1e3
1 changed files with 2 additions and 2 deletions
|
@ -214,10 +214,10 @@ def main():
|
|||
print("```")
|
||||
print(diff_staged)
|
||||
print("```")
|
||||
out, _ = run("lsb_release -sd", True)
|
||||
out, _ = run("lsb_release -sd", True).communicate()
|
||||
out.strip()
|
||||
print("System:", out)
|
||||
out, _ = run("cat /proc/cpuinfo | grep 'model name' | head -n1 | cut -d ':' -f2", True)
|
||||
out, _ = run("cat /proc/cpuinfo | grep 'model name' | head -n1 | cut -d ':' -f2", True).communicate()
|
||||
out.strip()
|
||||
print("Hardware:", out)
|
||||
print("")
|
||||
|
|
Loading…
Reference in a new issue