From 564b325908dca191b1918da5854ba5bc76a5976d Mon Sep 17 00:00:00 2001 From: matilote Date: Fri, 28 Jun 2019 09:53:01 +0200 Subject: [PATCH 1/2] adding travis_wait for Ethereum.Blockchain tests --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 6a996334723..9c0bcf7a6c3 100755 --- a/.travis.yml +++ b/.travis.yml @@ -79,7 +79,7 @@ jobs: name: "Ethereum.Basic.Test" - script: dotnet test /p:CollectCoverage=true /p:CoverletOutputFormat=opencover /p:Exclude="[Nethermind.HashLib]*" src/Nethermind/Ethereum.Blockchain.Block.Test name: "Ethereum.Blockchain.Block.Test" - - script: dotnet test /p:CollectCoverage=true /p:CoverletOutputFormat=opencover /p:Exclude="[Nethermind.HashLib]*" src/Nethermind/Ethereum.Blockchain.Test + - script: travis_wait 15 dotnet test /p:CollectCoverage=true /p:CoverletOutputFormat=opencover /p:Exclude="[Nethermind.HashLib]*" src/Nethermind/Ethereum.Blockchain.Test name: "Ethereum.Blockchain.Test" - script: dotnet test /p:CollectCoverage=true /p:CoverletOutputFormat=opencover /p:Exclude="[Nethermind.HashLib]*" src/Nethermind/Ethereum.Difficulty.Test name: "Ethereum.Difficulty.Test" From a478b9b3ff4e6d91a26e7b974d2afed688e5c21c Mon Sep 17 00:00:00 2001 From: matilote Date: Fri, 28 Jun 2019 13:48:35 +0200 Subject: [PATCH 2/2] increasing travis_wait to 20minutes --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 9c0bcf7a6c3..66be866a6a9 100755 --- a/.travis.yml +++ b/.travis.yml @@ -79,7 +79,7 @@ jobs: name: "Ethereum.Basic.Test" - script: dotnet test /p:CollectCoverage=true /p:CoverletOutputFormat=opencover /p:Exclude="[Nethermind.HashLib]*" src/Nethermind/Ethereum.Blockchain.Block.Test name: "Ethereum.Blockchain.Block.Test" - - script: travis_wait 15 dotnet test /p:CollectCoverage=true /p:CoverletOutputFormat=opencover /p:Exclude="[Nethermind.HashLib]*" src/Nethermind/Ethereum.Blockchain.Test + - script: travis_wait 20 dotnet test /p:CollectCoverage=true /p:CoverletOutputFormat=opencover /p:Exclude="[Nethermind.HashLib]*" src/Nethermind/Ethereum.Blockchain.Test name: "Ethereum.Blockchain.Test" - script: dotnet test /p:CollectCoverage=true /p:CoverletOutputFormat=opencover /p:Exclude="[Nethermind.HashLib]*" src/Nethermind/Ethereum.Difficulty.Test name: "Ethereum.Difficulty.Test"