-
-
Notifications
You must be signed in to change notification settings - Fork 401
Cleaning a bit more inform: #18906
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cleaning a bit more inform: #18906
Conversation
|
This issue has either a default title or empty body. We would appreciate it if you could provide more information. Note: I am not a very intelligent bot, I can only react to new comments. Please add a comment for me if you update the body or title. |
|
It has been 2 build that command line tests are not passing. This seems related since it passed on other PRs |
|
I do not get what you are saying. |
|
I will not fix what I do not understand. Sorry but I cannot. |
|
Those are functional tests of the pharo command line handling. It's tests running some command lines and checking that the output of the tests are those expected. |
|
I might have an idea of the origin of the error. With the InformativeNotification, if NewTools is in the image, we ask it to inform the user via growl (in the morphic adapter). But if the image is not interactive, then we do nothing while we should print the string in the stdout! I'll try to fix this tomorrow if the error is this one (it's just a hunch for now) |
Revert SUnit-Basic-Clap because superclass defines an inform: method
|
let us see. |
yes, you're right @jecisc ! |
These tests are important @Ducasse : they ensure Pharo command line is working as expected. @test "test can run tests on a regex" {
run_pharo test SUnit-UI.*
assert_success
assert_line "Running tests in 2 Packages"
assert_line "Finished running 16 Tests"
assert_line --partial "Finished to run tests of SUnit-UI-Tests in"
assert_line "16 run, 16 passes, 0 failures, 0 errors."
}Tests use helper functions defined in https://github.com/pharo-project/pharo/blob/Pharo14/tests/test_helper.bash.
|
|
Of course they are important now I do not know how they fail. |
|
So yes my revert fixed the problems with clap. Now this is strange because before the MC testswere not failing. |
yes, The problem is the one @jecisc pointed out. In headless mode, no inform is performed on stdout as expected |
No description provided.