diff --git a/py-scripts/regression_test.sh b/py-scripts/regression_test.sh
index 77eeb6b2..50a172fe 100755
--- a/py-scripts/regression_test.sh
+++ b/py-scripts/regression_test.sh
@@ -91,9 +91,15 @@ function run_test() {
grep -i fail "${TEST_DIR}/${i}.txt" && retval=1
chmod 664 "${TEST_DIR}/${i}.txt"
if (( $retval == 0 )); then
- results+=("
| ${CURR_TEST_NAME} | ${i} | Success | STDOUT | STDERR |
")
+ results+=("| ${CURR_TEST_NAME} | ${i} |
+ Success |
+ STDOUT |
+ STDERR |
")
else
- results+=("| ${CURR_TEST_NAME} | ${i} | Failure | |
")
+ results+=("| ${CURR_TEST_NAME} | ${i} |
+ Failure |
+ STDOUT |
+ STDERR |
")
fi
fi
diff --git a/py-scripts/update_deps.py b/py-scripts/update_deps.py
deleted file mode 100644
index dac713ce..00000000
--- a/py-scripts/update_deps.py
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/usr/bin/env python3
-import subprocess
-def main():
- command = "pip install pandas seaborn plotly numpy dash --upgrade"
- res = subprocess.call(command, shell = True)
-
- print("Returned Value: ", res)
-
-if __name__ == "__main__":
- main()
diff --git a/py-scripts/update_deps.sh b/py-scripts/update_deps.sh
deleted file mode 100755
index 0ff68504..00000000
--- a/py-scripts/update_deps.sh
+++ /dev/null
@@ -1 +0,0 @@
-pip install pandas seaborn plotly numpy dash --upgrade