Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: LambdaTest/java-testng-selenium
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: Jayakumar33/java-testng-selenium
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Able to merge. These branches can be automatically merged.
  • 3 commits
  • 7 files changed
  • 1 contributor

Commits on Jun 4, 2024

  1. bitbucket pipeline

    Jayakumar33 committed Jun 4, 2024
    Copy the full SHA
    6ac6fa7 View commit details
  2. bitbucket pipeline

    Jayakumar33 committed Jun 4, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    76873d8 View commit details
  3. bitbucket pipeline

    Jayakumar33 committed Jun 4, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    6f7ffc2 View commit details
Showing with 69 additions and 2 deletions.
  1. +3 −0 .idea/.gitignore
  2. +13 −0 .idea/compiler.xml
  3. +20 −0 .idea/jarRepositories.xml
  4. +12 −0 .idea/misc.xml
  5. +6 −0 .idea/vcs.xml
  6. +9 −0 bitbucket-pipelines.yml
  7. +6 −2 pom.xml
3 changes: 3 additions & 0 deletions .idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 13 additions & 0 deletions .idea/compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 20 additions & 0 deletions .idea/jarRepositories.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions bitbucket-pipelines.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
image: maven:3.7.0

pipelines:
default:
- step:
caches:
- maven
script:
- mvn test -D suite=single.xml
8 changes: 6 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -5,6 +5,7 @@
<groupId>Java-TestNG-Selenium</groupId>
<artifactId>Java-TestNG-Selenium</artifactId>
<version>0.0.1-SNAPSHOT</version>

<build>
<sourceDirectory>Java-TestNG-Selenium/src</sourceDirectory>
<resources>
@@ -35,9 +36,12 @@
</execution>
</executions>
<configuration>
<!-- <suiteXmlFiles>-->
<!-- &lt;!&ndash;suppress UnresolvedMavenProperty &ndash;&gt;-->
<!-- <suiteXmlFile>${suite}</suiteXmlFile>-->
<!-- </suiteXmlFiles>-->
<suiteXmlFiles>
<!--suppress UnresolvedMavenProperty -->
<suiteXmlFile>${suite}</suiteXmlFile>
<suiteXmlFile>single.xml</suiteXmlFile>
</suiteXmlFiles>
</configuration>
</plugin>