На самом деле, я интегрирую свои TestNG и остальные тесты с jenkins, все хорошо интегрируется, и когда я беру сборку, она терпит неудачу ниже, это проблема, которую я получил в консоли без вывода:
Сборка в рабочей области C: \ Users \ True Meridian.jenkins \ workspace \ ApiAutomation
C: \ Program Files \ Git \ bin \ git.exe rev-parse --is-inside-work-tree # timeout = 10Извлечение изменений из удаленного хранилища Git C: \ Program Files \ Git \ bin \ git.exe config remote.origin.url https://github.com/Usmanch760/PlayPalApi.git # timeout = 10 Извлечение исходящих изменений из https://github.com/Usmanch760/PlayPalApi.git C: \ ProgramФайлы \ Git \ bin \ git.exe --version # timeout = 10 C: \ Program Files \ Git \ bin \ git.exe fetch --tags --progress https://github.com/Usmanch760/PlayPalApi.git + refs /heads / : refs / remotes / origin / # timeout = 30 C: \ Program Files \ Git \ bin \ git.exe rev-parse "refs / remotes / origin / master ^ {commit}" # timeout = 10 C: \Program Files \ Git \ bin \ git.exe rev-parse "refs / remotes / origin / origin / master ^ {commit}" # timeout = 10 Извлечение ревизии 1831aa5e76106af1bf98cb25aa31ae46f360e5df (refs/ remotes / origin / master) C: \ Program Files \ Git \ bin \ git.exe config core.sparsecheckout # timeout = 10 C: \ Program Files \ Git \ bin \ git.exe check -f 1831aa5e76106af1bf98cb25aa31ae46f360e5df Зафиксировать сообщение: "Pomобновлен TestNg.xml "C: \ Program Files \ Git \ bin \ git.exe rev-list --no-walk 1831aa5e76106af1bf98cb25aa31ae46f360e5df # timeout = 10 Распаковка https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.5.3/apache-maven-3.5.3-bin.zip в C: \ Users \ True Meridian.jenkins \ tools\ hudson.tasks.Maven_MavenInstallation \ MAVEN_HOME для Jenkins [ApiAutomation] $ cmd.exe / C '"" C: \ Users \ True Meridian.jenkins \ tools \ hudson.tasks.Maven_MavenInstallation \ MAVEN_HOME \ bin \ mvn.cmd "'f pom.xml clean install && exit %% ERRORLEVEL %% "POM-файл pom.xml указал, что аргумент командной строки -f / - file не существует Шаг сборки 'Вызовите цели Maven верхнего уровня', помеченные как сбой TestNG ReportsОбработка: НАЧАЛО Поиск отчета о результатах TestNG в рабочей области с использованием шаблона: ** / testng-results.xml testng-results.xml последний раз изменялся перед началом этой сборки.Игнорируя это.Сохранение отчетов ... Найдены подходящие файлы, но не найдено результатов TestNG.Закончено: ОТКАЗ
Примечание: testNG test отлично работает на моем эклипсисе
, вот мой pom.xml:
<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">
<modelVersion>4.0.0</modelVersion>
<groupId>com.Test.automation</groupId>
<artifactId>PlayPalApi</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>PlayPalApi</name>
<url>http://maven.apache.org</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<!-- https://mvnrepository.com/artifact/io.rest-assured/rest-assured -->
<dependency>
<groupId>io.rest-assured</groupId>
<artifactId>rest-assured</artifactId>
<version>3.2.0</version>
<!-- <scope>compile</scope> -->
</dependency>
<!-- https://mvnrepository.com/artifact/com.jayway.restassured/rest-assured -->
<dependency>
<groupId>com.jayway.restassured</groupId>
<artifactId>rest-assured</artifactId>
<version>2.9.0</version>
<scope>compile</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/com.google.code.gson/gson -->
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.8.1</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.testng/testng -->
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>6.10</version>
<!-- <scope>test</scope> -->
</dependency>
<!-- https://mvnrepository.com/artifact/org.json/json -->
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20170516</version>
</dependency>
<!-- https://mvnrepository.com/artifact/com.relevantcodes/extentreports -->
<dependency>
<groupId>com.relevantcodes</groupId>
<artifactId>extentreports</artifactId>
<version>2.41.2</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.19.1</version>
<configuration>
<!-- Old design where we can hard code TestNG suite in pom.xml -->
<suiteXmlFiles>
<suiteXmlFile>testng.xml</suiteXmlFile>
</suiteXmlFiles>
</configuration>
</plugin>
</plugins>
</build>
</project>
Любая помощь будет очень признательна, спасибо.