Replies: 1 comment 2 replies
-
|
probably wrong place to post this |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello everyone, i recently updated from test reporter to test beats keeping the same config files etc.
Everything worked fine until the update from v2.0.2 to v2.0.3. When the update happened, my gitlab CI stage for publishing the results failed.
in my script i have
npm install -g testbeats@latesttestbeats publish -c testbeats.config.jsonwhere my config.json is
{ "targets": [ { "name": "slack", "inputs": { "url": "https://hooks.slack.com/services/{SLACK_TOKEN}", "publish": "test-summary", "title": " Test Results * \n *- Branch:* {CI_COMMIT_REF_NAME} *-* \n *- Commit:* {CI_COMMIT_SHORT_SHA} *-" }, "extensions": [ { "name": "hyperlinks", "inputs": { "links": [ { "text": "Pipeline", "url": "{CI_PIPELINE_URL}" }, { "text": "Report Portal", "url": "{Report_portal_url}" } ] } }, { "name": "report-portal-analysis", "inputs": { "url": "{REPORT_PORTAL_BASE_URL}", "api_key": "{REPORT_PORTAL_TOKEN}", "project": "myproject", "launch_name": "my project test" } }, { "name": "quick-chart-test-summary" } ] } ], "results": [ { "type": "junit", "files": [ "{MODIFIED_XML_PATH}" ] } ] }Now i get this error
Which is bizarre because in my bash script i pwd to check the working directory and cd to devops and ls and see the config there.
Beta Was this translation helpful? Give feedback.
All reactions