Skip to content

Releases: Azure/load-testing

Adding a parameter to ignore the wait for the test run completion

01 Apr 09:31

Choose a tag to compare

Using this tag and version, now you can just trigger the test-run from the work-flow without blocking the same until the test-run completion.
Use waitForTestRunCompletion: false from the task and we don't wait for the test-run completion, we only upload artifacts and start the test, and exit the task gracefully with suucceded state not affecting your workflows.

GitHub Action for Azure Load Testing

01 Dec 04:00

Choose a tag to compare

Automate your GitHub Actions workflow to load test using Azure Load Testing

Sample workflow to run a load test using Azure Load testing

# File: .github/workflows/workflow.yml

on: push

jobs:
  # This workflow contains a single job called "loadtest"

  loadtest:
    name: Load Test
    runs-on: ubuntu-latest
    steps:
      - name: Checkout GitHub Actions 
        uses: actions/checkout@v2
          
      - name: Login to Azure
        uses: azure/login@v1
        continue-on-error: false
        with:
          creds: ${{ secrets.AZURE_CREDENTIALS }}
        
      - name: 'Azure Load Testing'
        uses: azure/load-testing@v1
        with:
          loadTestConfigFile: 'SampleApp.yaml'
          loadTestResource: 'loadTestResourceName'
          resourceGroup: 'loadTestResourceGroup'

testing tag

01 Apr 11:16
b380768

Choose a tag to compare

Create tag_update_trigger workflow for integration tests (#141)

* Create tag_update_trigger workflow for integration tests

This workflow triggers on tag updates and runs integration tests using Azure Load Testing.

* Update tag_update_trigger.yml

test

01 Apr 11:13

Choose a tag to compare

This tag is just to test some workflow, though its targeting the old stable one.

Fix minor issues for headers

08 Dec 05:43
d594a06

Choose a tag to compare

v1.2.2

Fixing the header sanitisation to allow only Ascii characters. (#136)

Fixed issue with missing node modules

20 Nov 08:03
8f34727

Choose a tag to compare

Auto stop on exceeding VUs per engine

22 Apr 06:24
29dff69

Choose a tag to compare

v1.1.28

[AutoStop Max VU] Update API version to 2025-03-01-preview and add mi…

Minor fixes

25 Mar 04:43
70ccbd7

Choose a tag to compare

v1.1.27

few fixes found from UTs etc and headers fixes. (#122)

v1.1.26

06 Mar 09:42
99906d7

Choose a tag to compare

Support App Components, server side failure criteria

Added support for Locust tests

09 Nov 13:44
3e6fb15

Choose a tag to compare

[Multi-Engine] Cleanup Locust flag (#103) (#104)

* Remove locust flag
* Add Locust E2E sample file