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("```")
|
||||||
print(diff_staged)
|
print(diff_staged)
|
||||||
print("```")
|
print("```")
|
||||||
out, _ = run("lsb_release -sd", True)
|
out, _ = run("lsb_release -sd", True).communicate()
|
||||||
out.strip()
|
out.strip()
|
||||||
print("System:", out)
|
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()
|
out.strip()
|
||||||
print("Hardware:", out)
|
print("Hardware:", out)
|
||||||
print("")
|
print("")
|
||||||
|
|
Loading…
Reference in a new issue