Skip to content

Commit

Permalink
fix(ci): increase test timeouts to 1h hyperledger-cacti#656
Browse files Browse the repository at this point in the history
Bumping up the test timesouts to a full hour
becauase under heavy load the GHA runner seems
to be extremely slow, meaning that the fabric
tests can take longer than half an hour each
despite the fact that these usually take about
5 minutes or less even on the slow GHA runners.

Fixes hyperledger-cacti#656

Signed-off-by: Peter Somogyvari <[email protected]>
  • Loading branch information
petermetz committed Mar 24, 2021
1 parent fea547f commit 6712d28
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@
"webpack:prod": "lerna run webpack:prod",
"webpack:prod:web": "lerna run webpack:prod:web",
"webpack:prod:node": "lerna run webpack:prod:node",
"test:all": "tap --node-arg=--max-old-space-size=4096 --timeout=600 \"packages/cactus-*/src/test/typescript/{unit,integration}/\"",
"test:all": "tap --node-arg=--max-old-space-size=4096 --timeout=3600 \"packages/cactus-*/src/test/typescript/{unit,integration}/\"",
"test:unit": "tap --node-arg=--max-old-space-size=4096 --timeout=600 \"packages/cactus-*/src/test/typescript/unit/\"",
"test:browser": "karma start karma.conf.js",
"test:integration": "tap --node-arg=--max-old-space-size=4096 --jobs=1 --timeout=600 \"packages/cactus-*/src/test/typescript/integration/\"",
"test:integration": "tap --node-arg=--max-old-space-size=4096 --jobs=1 --timeout=3600 \"packages/cactus-*/src/test/typescript/integration/\"",
"changelog": "conventional-changelog --infile CHANGELOG.md --outfile CHANGELOG.md && git add CHANGELOG.md",
"commit": "git-cz --signoff",
"prettier": "prettier --write --config .prettierrc.json \"./**/*.{ts,js}\"",
Expand Down

0 comments on commit 6712d28

Please sign in to comment.