Skip to content

Commit

Permalink
Minor edits
Browse files Browse the repository at this point in the history
  • Loading branch information
QAInsights committed Nov 15, 2023
1 parent 3cee124 commit 970332a
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 24 deletions.
40 changes: 20 additions & 20 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,26 +4,26 @@ jobs:
runs-on: ubuntu-latest
name: JMeter Test Execution
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Checkout
uses: actions/checkout@v3

- name: Create reports directory
run: mkdir reports
- name: Create reports directory
run: mkdir reports

- name: Run JMeter Tests
uses: ./
with:
test-plan-path: ./TestPlans/S01_SimpleExample/S01_SimpleExample.jmx
args: "-e -o ./reports/html/"

- name: Run JMeter Tests
uses: ./
with:
test-plan-path: ./TestPlans/S01_SimpleExample/S01_SimpleExample.jmx
args: "-e -o ./reports/html/"

- name: Upload Results
uses: actions/upload-artifact@v3
with:
name: jmeter-results
path: result.jtl
- name: Upload Results
uses: actions/upload-artifact@v3
with:
name: jmeter-results
path: result.jtl

- name: Upload Html Reports
uses: actions/upload-artifact@v3
with:
name: jmeter-reports
path: reports
- name: Upload Html Reports
uses: actions/upload-artifact@v3
with:
name: jmeter-reports
path: reports
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ Following are the prerequisites for this GitHub Action:
```
### Example #3 with arguments to Generate HTML Reports

make sure you create directory with the name where you want html report to be saved.
Make sure you create directory with the name where you want html report to be saved.

```
- name: Create reports directory
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ branding:
inputs:
test-plan-path:
required: true
description: jmeter test plan to execute
description: JMeter test plan to execute
results-file:
required: false
description: Where to store the results e.g., result.csv
Expand Down
4 changes: 2 additions & 2 deletions jmeter-plugin-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ java -jar ${JMETER_HOME}/lib/cmdrunner-${JMETER_CMD_RUNNER_VERSION}.jar --tool o

chmod a+x ${JMETER_HOME}/bin/*.sh

pwd
# pwd

ls -l ${JMETER_HOME}/bin/*.sh
# ls -l ${JMETER_HOME}/bin/*.sh

0 comments on commit 970332a

Please sign in to comment.