regression test updates

This commit is contained in:
Matthew Stidham
2021-02-05 14:00:43 -08:00
parent eb854d9104
commit a3be0cad29
3 changed files with 14 additions and 5 deletions

View File

@@ -1,7 +1,7 @@
#!/usr/bin/env python3
import subprocess
def main():
command = "pip install pandas seaborn plotly numpy dash paramiko --upgrade"
command = "pip3 install pandas seaborn plotly numpy dash paramiko --upgrade"
res = subprocess.call(command, shell = True)
print("Returned Value: ", res)