Skip to content

Commit

Permalink
Updated playground test
Browse files Browse the repository at this point in the history
  • Loading branch information
martingrossmann committed Dec 3, 2024
1 parent 16cc42f commit 80e8721
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
5 changes: 5 additions & 0 deletions report-ng-tests/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ test {

def preTest = findProperty("pretestRNG")
def preTestExtended = findProperty("pretestRNGExtended")
def playground = findProperty("playground")

if (preTest) {
s = ['src/test/resources/testng/GenerateReport.xml']
Expand All @@ -36,6 +37,10 @@ test {
System.setProperty("tt.report.name", "Generated Report for Additional UI-Test")
}

if (playground) {
s = ['src/test/resources/testng/Playground.xml']
}

useTestNG() {
suites s
// configFailurePolicy "continue"
Expand Down
13 changes: 7 additions & 6 deletions report-ng-tests/src/test/resources/testng/Playground.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,16 @@
<suite name="Report - Playground suite" verbose="1" parallel="methods" configfailurepolicy="continue" thread-count="10" data-provider-thread-count="10">

<test name="Test1" parallel="methods">
<groups>
<run>
<include name="extended"/>
<!-- <groups>-->
<!-- <run>-->
<!-- <include name="extended"/>-->
<!-- <include name="extended2"/>-->
</run>
</groups>
<!-- </run>-->
<!-- </groups>-->
<classes>
<class name="io.testerra.report.test.pretest_status.dependency.DependencySetup1Tests"/>
<!-- <class name="io.testerra.report.test.pretest_status.dependency.DependencySetup1Tests"/>-->
<!-- <class name="io.testerra.report.test.pretest_status.dependency.DependencySetup3Tests"/>-->
<class name="io.testerra.report.test.report_test.common.LayoutTest"/>
</classes>
</test>

Expand Down

0 comments on commit 80e8721

Please sign in to comment.