diff --git a/continuous_integration/home/coder/.local/bin/test-cunumeric b/continuous_integration/home/coder/.local/bin/test-cunumeric index ae9a2cf66..fb56f6930 100755 --- a/continuous_integration/home/coder/.local/bin/test-cunumeric +++ b/continuous_integration/home/coder/.local/bin/test-cunumeric @@ -22,33 +22,27 @@ test-cunumeric() { shift; update_conda_env_using_section tests cd cunumeric - set -- \ - timeout -v -s 9 92m \ - timeout -v --foreground 90m \ - ./test.py --verbose "$@" + ./test.py --verbose "$@" ;; "mypy") echo "Executing mypy..." shift; update_conda_env_using_section tests docs cd cunumeric - set -- mypy cunumeric + mypy cunumeric ;; "docs") echo "Building docs..." shift; update_conda_env_using_section docs cd cunumeric/docs/cunumeric - set -- make clean html + make clean html ;; *) echo "Invalid command: $1" return 1 ;; esac - - # Use exec so the command replaces the bash script and signals are passed down - exec "$@" } (test-cunumeric "$@"); \ No newline at end of file