Open Frasenk opened 2 weeks ago
Hello, I have issue that zephyrscale_result.json file is not generated after tests, I'm using TestNg, my pom.xml file:
`<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<groupId>com.example</groupId> <artifactId>test-test</artifactId> <version>1.0-SNAPSHOT</version> <packaging>jar</packaging> <name>Test Automation</name> <properties> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> </properties> <dependencies> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <version>7.10.2</version> </dependency> <dependency> <groupId>io.rest-assured</groupId> <artifactId>rest-assured</artifactId> <version>5.5.0</version> </dependency> <dependency> <groupId>org.json</groupId> <artifactId>json</artifactId> <version>20240303</version> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <version>3.26.3</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>2.18.0</version> </dependency> <dependency> <groupId>com.smartbear</groupId> <artifactId>zephyrscale-junit-integration</artifactId> <version>2.0.1</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>3.5.1</version> <configuration> <suiteXmlFiles> <suiteXmlFile>testng.xml</suiteXmlFile> </suiteXmlFiles> <properties> <property> <name>usedefaultlisteners</name> <value>false</value> </property> <property> <name>listener</name> <value>com.smartbear.zephyrscale.junit.ExecutionListener</value> </property> <property> <name>surefire.testng.verbose</name> <value>10</value> </property> </properties> </configuration> </plugin> </plugins> </build>
`
in tests I'm using decorator (@ TestCase(key = "[some_key]"))
could you tell if it is some issue in package or I have incorrectly configured pom.xml?
Hello, I have issue that zephyrscale_result.json file is not generated after tests, I'm using TestNg, my pom.xml file:
`<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
`
in tests I'm using decorator (@ TestCase(key = "[some_key]"))
could you tell if it is some issue in package or I have incorrectly configured pom.xml?