From 450ebad309fd23f6b1aeee93c90aafd2da801e2d Mon Sep 17 00:00:00 2001 From: NaveenKumar Namachivayam Date: Wed, 19 Aug 2020 22:28:19 -0400 Subject: [PATCH] Added JMeter plugins examples --- .github/workflows/main.yml | 4 ++-- README.md | 4 ++-- .../{T01_HomePageLoad.jmx => S01_SimpleExample.jmx} | 0 3 files changed, 4 insertions(+), 4 deletions(-) rename TestPlans/S01_SimpleExample/{T01_HomePageLoad.jmx => S01_SimpleExample.jmx} (100%) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d33f2cd..ca0f762 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -10,8 +10,8 @@ jobs: - name: Run JMeter Tests uses: ./ with: - test-plan-path: ./TestPlans/S03_UDPExample/S03_UDPExample.jmx - args: "" + test-plan-path: ./TestPlans/S01_SimpleExample/S01_SimpleExample.jmx + args: "" - name: Upload Results uses: actions/upload-artifact@v2 diff --git a/README.md b/README.md index 19b8db1..8440042 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ Following are the prerequisites for this GitHub Action: - name: JMeter Test uses: QAInsights/PerfAction@v1.0 with: - test-plan-path: ./TestPlans/T01_HomePageLoad.jmx + test-plan-path: ./TestPlans/S01_SimpleExample/S01_SimpleExample.jmx args: "" ``` @@ -40,7 +40,7 @@ Following are the prerequisites for this GitHub Action: - name: JMeter Test uses: QAInsights/PerfAction@v1.0 with: - test-plan-path: ./TestPlans/T01_HomePageLoad.jmx + test-plan-path: ./TestPlans/S01_SimpleExample/S01_SimpleExample.jmx args: "-H my.proxy.server -P 8000" ``` diff --git a/TestPlans/S01_SimpleExample/T01_HomePageLoad.jmx b/TestPlans/S01_SimpleExample/S01_SimpleExample.jmx similarity index 100% rename from TestPlans/S01_SimpleExample/T01_HomePageLoad.jmx rename to TestPlans/S01_SimpleExample/S01_SimpleExample.jmx