I have my katalon project created in the machine A, and I would like to run my katalon selected test cases/test suite in CI build agent in machine B (where no katalon studio installed). It is possible to execute the selected test cases/test suite with exported executable jar file? Is Katalon support export jar file?
You should save your Katalon Project on the whole into Git and push it to some Remote Git Repository service such as GitHub, BitBucket or GitLab. And share the remote Git repository by Katalon Studio on machine A and CI build on machine B.
Please have a look at my comment at 08/03/2018 to the discussion
Thanks for the reply.
The intention is, the CI build in machine B only execute for smoke testing (small portion from the project). Instead of pull the whole Katalon project, i only want to pull the related files for my “SMOKE_TEST_SUITE”.
Katalon Studio is not designed to be able to partially export test cases/test objects/test listeners/test suites.
You should create a test suites “SmokeTests” in addition to “FullTests”. The SmokeTests executes only the test cases you want run on the CI build on machine B. You clone the whole project and execute the “SmokeTests” while you leave the FullTests untouched. This is the simplest approach.