goconvey icon indicating copy to clipboard operation
goconvey copied to clipboard

Stop GoConvey from running test concurrently

Open tom10271 opened this issue 6 years ago • 3 comments

I am trying to build and run test for CI. I will reset DB, ES and Redis before each test, GoConvey will trigger undesired behavior that can be avoided if tests are running synchronously

tom10271 avatar Oct 02 '18 02:10 tom10271

@tom10271 Have you found a decent workaround for this?

sefasenturk95 avatar Dec 14 '18 15:12 sefasenturk95

I am using go test to run tests synchronously with GoConvey

tom10271 avatar Dec 15 '18 00:12 tom10271

For anyone looking for this, you can set the number of packages to be tested synchronously.

Synchronous with CLI:

go test ./... 

Synchronous with the web ui:

goconvey -packages=1

MattLish avatar Feb 22 '19 11:02 MattLish