-
Notifications
You must be signed in to change notification settings - Fork 5
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
Bug: Output received only with specific commands #9
Comments
Hello @Chezka109 is this still an issue or has it been resolved with recent releases? |
@gkapfham, sorry for the late reply. it is still an issue but i believe @hemanialaparthi is working on it. |
Hi @hemanialaparthi thanks for raising this issue, I appreciate it! Yes, I agree that this is a problem that we should resolve. Ideally, the tool should at least provide the same output as |
Hi @gkapfham! I'd be happy to take on this issue, but I have a few other PRs to complete first. I'll make sure to get to it soon, though! |
Hi @hemanialaparthi, sure that sounds fine. I have marked this as |
I think that this issue is also impacting the output of |
Hi! This isn’t quite what @Chezka109 and I were discussing. When you run execexam, it doesn’t generate an output; instead, it shows red when it fails and blue when it passes, but no output is displayed. We have to put in |
Description:
When running
poetry run execexam . tests/
, no output is displayed, even though the tests pass successfully. Unlikepytest
, which provides verbose output when using the-v
flag,execexam
does not provide any feedback, making it difficult to confirm whether tests were executed or their results.Steps to Reproduce:
poetry install
.poetry run execexam . tests/
.poetry run pytest -v
for comparison, and observe that the test results are shown.Expected Behavior:
Some form of output should be displayed when running tests with
execexam
, at least showing whether the tests passed or failed. Ideally, there should be a verbosity option or default feedback that informs the user about the test results.Actual Behavior:
No output is provided by
execexam
, even though the tests execute and pass in the background. There is no indication of the test status unlesspytest
is used directly.Additional Information:
pytest
provides verbose output using the-v
flag, butexecexam
doesn't seem to have any verbosity option or built-in output.execexam
wraps or integrates withpytest
and handles test execution.The text was updated successfully, but these errors were encountered: