lakshaykaushik / PublishHTMLReport

Azdo Extension- Publish Jmeter Reports to Azure Devops
MIT License
33 stars 23 forks source link

Unable to visualize html report in Azdo #50

Open GeekySurya opened 3 years ago

GeekySurya commented 3 years ago

Hi, I am running jMeter test in my release pipeline using PowerShell script. Its generating jMeter reports scuccessfully.

image

Then I run publishhtmlreport task to publish reports to azdo.

The task completed successfully .. image

But I dont see any reports -

image

Could you please let me know how can I visualize the report in azdo

Here is the yaml for my task

steps:

arunangshupodder commented 2 years ago

Hi, I am also facing similar issue. Can someone please suggest if we are missing out on any step.

AErmie commented 2 years ago

I'm also experiencing rendering issues with this extension. I have verified that the issue is with the extension itself.

I am running a JMeter test (via JMX file) in an Azure Pipeline...

JMeter Azure Pipeline Script:

apache-jmeter-5.4.3/bin/./jmeter -Jjmeter.reportgenerator.overall_granularity=1000 \
  --nongui \
  --addprop "$(System.DefaultWorkingDirectory)/jmeter/MyTest.properties" \
  --testfile "$(System.DefaultWorkingDirectory)/jmeter/MyTest.jmx" \
  -JHost=$(HostName) \
  -JToken="${{ parameters.AuthToken }}" \
  --logfile results/results.jtl \
  --jmeterlogfile results/output.log \
  --reportatendofloadtests --reportoutputfolder report

When I capture the JMeter report output (like so)...

- task: PublishPipelineArtifact@1
      displayName: 'Publish JMeter HTML Report'
      condition: succeededOrFailed()
      inputs:
        targetPath: report
        artifactName: JMeter-Report
        artifactType: pipeline

... and I look at the captured HTML file, it renders fully/properly. However, when I try to use this extension, the Published HTML tab in the pipeline is blank/empty.

GeethaK18 commented 2 years ago

I am also facing the issue. Could not see the output tab. Could you please help?