Skip to content

Commit

Permalink
Merge pull request #15 from PelionIoT/release-2.6
Browse files Browse the repository at this point in the history
Release 2.6
  • Loading branch information
JanneKiiskila authored Jun 28, 2023
2 parents aecf86e + cbd92fc commit a475187
Show file tree
Hide file tree
Showing 23 changed files with 520 additions and 1,001 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/shellcheck.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Shellcheck
run-name: ${{ github.actor }} PR checker
on:
push:
paths:
- '**.sh'

# This allows a subsequently queued workflow run to interrupt previous runs
concurrency:
group: perts-'${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
cancel-in-progress: true
jobs:
run-shellcheck:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- run: shellcheck --version
- run: shellcheck scripts/*.sh
13 changes: 11 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
# Pelion Edge ready test suite
# Izuma Edge ready test suite

For documentation about the Pelion Edge ready test suite, please see the [Pelion Edge documentation](https://developer.pelion.com/docs/device-management-edge/latest/testing/pelion-edge-ready-test-suite.html).
For a more thorough documentation about the Izuma Edge ready test suite, please see the [Izuma Edge documentation](https://developer.izumanetworks.com/docs/device-management-edge/latest/testing/izuma-edge-ready-test-suite.html).

# Quick start

Run the [`script/perts.sh -a <access-key> -c <config-file-template>`](scripts/perts.sh).
- [`test-configs`](test-configs) - folder has multiple template scripts.
- The script will create a `test-config.json` file which is used as the configuration file for the test.
- It will automatically populate the device ID and account ID based on the information it gets via `curl localhost:<port>/status`.

**NOTE! KaaS tests require that the account has Edge KaaS features enabled. By default KaaS features are not enabled. Contact [Izuma Networks](https://www.izumanetworks.com/) to enable it.**
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pelion-edge-ready-test-suite",
"version": "2.2.0",
"version": "2.6.0",
"description": "Pelion Edge Ready Test Suite",
"main": "index.js",
"scripts": {
Expand Down Expand Up @@ -28,17 +28,17 @@
"compare-versions": "^3.6.0",
"jsonminify": "^0.4.1",
"kubernetes-client": "^9.0.0",
"mocha": "^8.3.0",
"mocha": "^9.2.2",
"randomstring": "^1.1.5",
"request": "^2.88.2",
"stream-buffers": "^3.0.2"
},
"devDependencies": {
"eslint": "^7.21.0",
"eslint": "^7.32.0",
"husky": "^5.1.3",
"junit-report-builder": "^2.1.0",
"lint-staged": "^10.5.4",
"mochawesome": "^6.1.1",
"mochawesome": "^7.1.3",
"prettier-standard": "^9.1.1"
}
}
48 changes: 0 additions & 48 deletions scripts/install_kubectl.sh

This file was deleted.

Loading

0 comments on commit a475187

Please sign in to comment.