Skip to content

Releases: Azure/load-testing

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)

GitHub Action for Azure Load Testing

01 Dec 04:00
d594a06

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'

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

Fixed minor issues

14 Jun 11:07
dc2ae74

Choose a tag to compare

v1.1.24

changes for EINVAL issue reported by customer, latest version changes…

v1.1.23

21 May 09:32
bf30be5

Choose a tag to compare

What's Changed

Adding support for multi-region load tests.

Full Changelog: v1...v1.1.23

Support for disabling public IP for private endpoint testing

15 Apr 14:03
a74772c

Choose a tag to compare

v1.1.22

changes to remove the checkout in the pr build (#92)