CT integration with CI-CD
GemPypAutomation testing can be done by creating test suites. Gempyp can be used to automate all types of tests for different technologies i.e., unit tests, functional tests, regression tests, smoke tests for technologies like API, UI, Data Comparison and Applications. These test suites can be scheduled to monitor the application functionality, can be integrated into CI/CD to deliver quality released.
Continuous Testing using Gempyp
- CT is the practice of automating and integrating tests into the software delivery chain and automatically executing those tests against each build of the codebase.
- Jenkins, Gitlab, Github Actions are the few CI/CD applications.
- Test suites can reside in your development repository and you can integrate these test suites to run in the build pipeline.
- If the pipeline fails due to the test suites, then those features should be fixed.
- If pipeline passes then the code is good to be released in the further build stages.
Test Suites residing in Development Folder Snippets
XML files and API Scripts

Test suite for the flask API

Link to the github repo – Click Here