Is there a way of running tests until they break in sbt?
up vote
0
down vote
favorite
Currently I'm doing this in bash:
## run until it breaks
while true; do
sbt ';test'
if [ $? -eq 1 ];
then break
fi;
done
But I would like to skip the sbt project loading overhead. Any ideas?
I'm trying to reproduce a non-deterministic bug.
sbt
add a comment |
up vote
0
down vote
favorite
Currently I'm doing this in bash:
## run until it breaks
while true; do
sbt ';test'
if [ $? -eq 1 ];
then break
fi;
done
But I would like to skip the sbt project loading overhead. Any ideas?
I'm trying to reproduce a non-deterministic bug.
sbt
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
Currently I'm doing this in bash:
## run until it breaks
while true; do
sbt ';test'
if [ $? -eq 1 ];
then break
fi;
done
But I would like to skip the sbt project loading overhead. Any ideas?
I'm trying to reproduce a non-deterministic bug.
sbt
Currently I'm doing this in bash:
## run until it breaks
while true; do
sbt ';test'
if [ $? -eq 1 ];
then break
fi;
done
But I would like to skip the sbt project loading overhead. Any ideas?
I'm trying to reproduce a non-deterministic bug.
sbt
sbt
asked Nov 7 at 12:19
LuGo
3,72611319
3,72611319
add a comment |
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53189354%2fis-there-a-way-of-running-tests-until-they-break-in-sbt%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown