Skip to content

Commit

Permalink
Removed timeouts from test-cunumeric.
Browse files Browse the repository at this point in the history
  • Loading branch information
sandeepd-nv committed Aug 31, 2023
1 parent 9de8e07 commit 2485636
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions continuous_integration/home/coder/.local/bin/test-cunumeric
Original file line number Diff line number Diff line change
Expand Up @@ -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 "$@");

0 comments on commit 2485636

Please sign in to comment.