Tag: Continious Integration
-
Maven: How to only execute certain Cucumber tags
I needed Maven to only run certain tests that had a specific tag (i.e., @regression). I couldn’t easily find information via the Cucumber website, so I’m logging it her for archiving. Note: This command also works in Jenkins via the “Goals and options” section. clean install -Dcucumber.options=”–tags @regression”
-
How to get information of your jobs in RunDeck
Did you know RunDeck has an API so you can get information about your jobs? Here are a couple of examples: To check the system: /api/1/system/info To see jobs of a project: /api/1/jobs?project=<project_name> More info at RunDeck API | Version 2. Cheers!