regression test additions and fixes to several scripts

This commit is contained in:
Matthew Stidham
2021-02-05 11:24:40 -08:00
parent 19dac1b4a6
commit c20b5f4272
4 changed files with 20 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 --upgrade"
command = "pip install pandas seaborn plotly numpy dash paramiko --upgrade"
res = subprocess.call(command, shell = True)
print("Returned Value: ", res)