sociomantic-tsunami / neptune

Sociomantic library versioning definitions, guides, and tools
Boost Software License 1.0
1 stars 15 forks source link

[DO NOT MERGE] Turn up verbosity to aid diagnose failure in Travis #259

Closed ibuclaw closed 4 years ago

ibuclaw commented 4 years ago

At first it seems like timing matters when it comes to the travis tests pass or not.

ibuclaw commented 4 years ago

Got something...

FAILED:
---------------------------------------
Timed out
ibuclaw commented 4 years ago

This assert

assert(!this.killed, "Neptune process timed out!");

never triggers because nobody sets killed anywhere in the unittest program, contrary to the documentation.

If the instance is running for more than 10 seconds, it will be
force-killed and this.killed will be set to true.
ibuclaw commented 4 years ago

Increased timeout to 30 seconds, and the build succeeds now. FYI @llucax .