Re: [Pharo-users] Test skip isn't working?

2019-03-21 Thread Vitor Medina Cruz
I think that maybe a different visual indicator with a text hint saying that if you click you are force executing it. The way it is is inconsistent, IMHO. On Mon, Mar 18, 2019 at 6:09 PM Christopher Fuhrman < christopher.fuhr...@gmail.com> wrote: > What about: > > self skipOnClassRun:

Re: [Pharo-users] Test skip isn't working?

2019-03-18 Thread Christopher Fuhrman
What about: self skipOnClassRun: 'message'. ? On Mon, Mar 18, 2019, 15:53 Ben Coman wrote: > This is a tough one to consider. Dennis's position seems very reasonable, > but that Vitor got stuck is an indication of something missing. > Just one other option occurs to me, that a notification

Re: [Pharo-users] Test skip isn't working?

2019-03-18 Thread Ben Coman
This is a tough one to consider. Dennis's position seems very reasonable, but that Vitor got stuck is an indication of something missing. Just one other option occurs to me, that a notification pops up saying "force run skipped method", but I'm not even sure that would be beneficial. cheers -ben

Re: [Pharo-users] Test skip isn't working?

2019-03-18 Thread Vitor Medina Cruz
It is confusing because something unexpected and different from what is explicitly said on code happens... I consider it an error. I think It should execute informing the test is skipped or don't provide the click button at all. It took me a long time looking at skip implementation and trying

Re: [Pharo-users] Test skip isn't working?

2019-03-18 Thread Denis Kudriashov
I think it is a feature. When you click icon on a single test you explicitly raise a wish to run it. пн, 18 мар. 2019 г., 1:26 Vitor Medina Cruz : > Skip only works when I run tests from class. If I click the test button > from the method skipped it don't work, maybe an error in calypso? > > On

Re: [Pharo-users] Test skip isn't working?

2019-03-17 Thread Vitor Medina Cruz
Skip only works when I run tests from class. If I click the test button from the method skipped it don't work, maybe an error in calypso? On Sun, Mar 17, 2019 at 3:13 PM Vitor Medina Cruz wrote: > Hello, > > someTest > self skip: 'some message'. > > rest of the test > > Rest of the test

[Pharo-users] Test skip isn't working?

2019-03-17 Thread Vitor Medina Cruz
Hello, someTest self skip: 'some message'. rest of the test Rest of the test is being executed. There is a different woy of skipping tests? Thanks, Vitor.