We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hello, I have issue that zephyrscale_result.json file is not generated after tests, I'm using TestNg, my pom.xml file:
` 4.0.0
<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?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello,
I have issue that zephyrscale_result.json file is not generated after tests, I'm using TestNg, my pom.xml file:
`
4.0.0
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?
The text was updated successfully, but these errors were encountered: