Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/check_pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ jobs:
run_tests:
name: "Run unit tests"
runs-on: ubuntu-latest
timeout-minutes: 35
timeout-minutes: 45

steps:
- &checkout_step
name: Checkout
uses: actions/checkout@v6.0.1
uses: actions/checkout@v6.0.2
with:
fetch-depth: 0
ref: ${{ github.event.pull_request.head.sha }}
Expand Down
2 changes: 1 addition & 1 deletion hack/run_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ function run_tests_in_dir() {

echo "Run tests in $full_pkg_path"
cd "$full_pkg_path"
if ! echo "test -timeout 30m -v -p 1 $run_tests" | xargs go; then
if ! echo "test -timeout 35m -v -p 1 $run_tests" | xargs go; then
all_failed_tests="$(echo -e "${all_failed_tests}\nTests in ${p} failed")"
fi
done <<< "$packages"
Expand Down