-
-
Notifications
You must be signed in to change notification settings - Fork 660
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
Option to print output of passed tests in Reporters #583
Comments
manosnoam
added a commit
to manosnoam/ginkgo
that referenced
this issue
Jun 25, 2019
This is PR for onsi#583 A new CLI option: -ginkgo.junitPassed. It will add output for each passed test into the JUnit XML, under <testcase> <passed>. (The default is only for failed tests output).
manosnoam
added a commit
to manosnoam/ginkgo
that referenced
this issue
Jun 25, 2019
This is PR for onsi#583 A new CLI option: -ginkgo.junitPassed. It will add output for each passed test into the JUnit XML, under <testcase> <passed>. (The default is only for failed tests output).
manosnoam
changed the title
Option to print steps for passed tests in Junit result
Option to print output of passed tests in Junit XML report
Jun 25, 2019
manosnoam
added a commit
to manosnoam/ginkgo
that referenced
this issue
Jun 25, 2019
This is PR for onsi#583 A new CLI option: -ginkgo.junitPassed. It will add output for each passed test into the JUnit XML, under <testcase> <passed>. (The default is only for failed tests output).
manosnoam
added a commit
to manosnoam/ginkgo
that referenced
this issue
Jun 27, 2019
This is PR for onsi#583 A new CLI option: -ginkgo.reportPassed : It will print output for each passed test in the generated report, including JUnit, Teamcity, and Default reporters. For example, in JUnit (XML), the test output will be added under: `<testcase> <passed>` The default behavior (without this option), prints test output only if the test case (spec) has failed.
manosnoam
added a commit
to manosnoam/ginkgo
that referenced
this issue
Jun 27, 2019
This is PR for onsi#583 A new CLI option: -ginkgo.reportPassed : It will print output for each passed test in the generated report, including JUnit, Teamcity, and Default reporters. For example, in JUnit (XML), the test output will be added under: `<testcase> <passed>` The default behavior (without this option), prints test output only if the test case (spec) has failed.
manosnoam
added a commit
to manosnoam/ginkgo
that referenced
this issue
Jun 27, 2019
This is PR for onsi#583 A new CLI option: -ginkgo.reportPassed : It will print output for each passed test in the generated report, including JUnit, Teamcity, and Default reporters. For example, in JUnit (XML), the test output will be added under: `<testcase> <passed>` The default behavior (without this option), prints test output only if the test case (spec) has failed.
manosnoam
added a commit
to manosnoam/ginkgo
that referenced
this issue
Jun 27, 2019
This is PR for onsi#583 A new CLI option: -ginkgo.reportPassed : It will print output for each passed test in the generated report, including JUnit, Teamcity, and Default reporters. For example, in JUnit (XML), the test output will be added under: `<testcase> <passed>` The default behavior (without this option), prints test output only if the test case (spec) has failed.
manosnoam
added a commit
to manosnoam/ginkgo
that referenced
this issue
Jun 27, 2019
This is PR for onsi#583 A new CLI option: -ginkgo.reportPassed : It will print output for each passed test in the generated report, including JUnit, Teamcity, and Default reporters. For example, in JUnit (XML), the test output will be added under: `<testcase> <passed>` The default behavior (without this option), prints test output only if the test case (spec) has failed.
manosnoam
added a commit
to manosnoam/ginkgo
that referenced
this issue
Jun 30, 2019
This is PR for onsi#583 A new CLI option: -ginkgo.reportPassed : It will print output for each passed test in the generated report, including JUnit, Teamcity, and Default reporters. For example, in JUnit (XML), the test output will be added under: `<testcase> <passed>` The default behavior (without this option), prints test output only if the test case (spec) has failed.
manosnoam
added a commit
to manosnoam/ginkgo
that referenced
this issue
Jun 30, 2019
This is PR for onsi#583 A new CLI option: -ginkgo.reportPassed : It will print output for each passed test in the generated report, including JUnit, Teamcity, and Default reporters. For example, in JUnit (XML), the test output will be added under: `<testcase> <passed>` The default behavior (without this option), prints test output only if the test case (spec) has failed.
Hi @williammartin,
Travis-CI is now passing. Can you please review ? |
manosnoam
changed the title
Option to print output of passed tests in Junit XML report
Option to print output of passed tests in Reporters
Jun 30, 2019
manosnoam
added a commit
to manosnoam/ginkgo
that referenced
this issue
Jul 1, 2019
This is PR for onsi#583 A new CLI option: -ginkgo.reportPassed : It will print output for each passed test in the generated report, including JUnit, Teamcity, and Default reporters. For example, in JUnit (XML), the test output will be added under: `<testcase> <passed>` The default behavior (without this option), prints test output only if the test case (spec) has failed.
manosnoam
added a commit
to manosnoam/ginkgo
that referenced
this issue
Jul 7, 2019
A new CLI option: -ginkgo.reportPassed It will print output for each passed test in the generated report, including JUnit, Teamcity, and Default reporters. For example, in JUnit (XML), the test output will be added under: `<testcase> <passed>` The default behavior (without this option), prints test output only if the test case (spec) has failed. [Fixes onsi#583]
manosnoam
added a commit
to manosnoam/ginkgo
that referenced
this issue
Jul 7, 2019
A new CLI option: -ginkgo.reportPassed It will print output for each passed test in the generated report, including JUnit, Teamcity, and Default reporters. For example, in JUnit (XML), the test output will be added under: `<testcase> <passed>` The default behavior (without this option), prints test output only if the test case (spec) has failed. [Fixes onsi#583]
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
For those who use reporters, such as Teamcity or Junit, for their tests frameworks, it is commonly required to display steps output of passed tests (not only for failed tests, which is the current behavior).
I've implemented an option to use
-ginkgo.reportPassed
for that purpose,and the report output, for example in Junit XML, will look as follow:
The text was updated successfully, but these errors were encountered: