Home Forums Integration Integration (Code) How can we break the complete unit test full suit

Viewing 2 reply threads
  • Author
    Posts
    • #9095
      sayna sahusayna sahu
      Participant

      In jenkin the job related to unit test full suit failing because of space issue.

      We are planning to breake it in smaller chunks,how we can achieve that.

      How can we configure app.test of ant to run smaller chunks of unit test

      0
    • #9108
      lchanlchan
      Participant

      I’m not sure I fully understand how running subsets of tests will solve a space issue.

      But with the app.test target you can specify which test suites or unit tests or even unit test cases to run using the app.test.name property.

      app.test.name=unittestcase:[UnitTest].[TestCase]

      You can use wildcards with exclusion operators as well that are applied in order:

      app.test.name=* !unittestsuite:Exchange

      This will run all tests except those found in the exchange suite

      0
    • #9137
      sayna sahusayna sahu
      Participant

      thanks for the reply is there any document which i reffer to configure new unit test job in jenkin in ruby.

      0
Viewing 2 reply threads
  • You must be logged in to reply to this topic.