Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • use the UI
  • use the REST API (more info here)
    • Code Block
      languagebash
      titleexample of a Bash script to export/generate the features from Xray
      #!/bin/bash
      
      curl -u admin:admin  "http://192jiraserver.168example.56.102com/rest/raven/1.0/export/test?keys=CALC-4763&fz=true" -o features.zip
      rm -f features/*.feature
      unzip -o features.zip  -d features
  • use one of the available CI/CD plugins (e.g. see an example of Integration with Jenkins)

...