diff --git a/.github/workflows/integration.yml b/.github/workflows/system-tests.yml similarity index 96% rename from .github/workflows/integration.yml rename to .github/workflows/system-tests.yml index ec7d7631823..dca96f15168 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/system-tests.yml @@ -1,4 +1,4 @@ -name: Integration tests +name: System tests on: push: branches: @@ -9,7 +9,7 @@ on: paths-ignore: - 'docs/**' jobs: - integration: + system: runs-on: ubuntu-22.04 services: mailhog: @@ -54,4 +54,4 @@ jobs: go install - name: Test run: | - make integration-tests + make system-tests diff --git a/Makefile b/Makefile index 05c9e049add..8da84e50271 100644 --- a/Makefile +++ b/Makefile @@ -30,7 +30,7 @@ scripts/golangci-lint: Makefile ## jslint: enforce a consistent code style for Js code jslint: scripts/node_modules - @scripts/node_modules/.bin/eslint -c scripts/eslintrc.json "assets/scripts/**" tests/integration/konnector/*.js + @scripts/node_modules/.bin/eslint -c scripts/eslintrc.json "assets/scripts/**" tests/system/konnector/*.js .PHONY: jslint ## pretty: make the assets prettier @@ -74,10 +74,10 @@ unit-tests: @go test -p 1 -timeout 2m -short ./... .PHONY: unit-tests -## integration-tests: run the tests -integration-tests: - @scripts/integration-test.sh -.PHONY: integration-tests +## system-tests: run the tests +system-tests: + @scripts/system-test.sh +.PHONY: system-tests ## clean: clean the generated files and directories clean: diff --git a/cmd/tools.go b/cmd/tools.go index 9b701c5241d..ba6efa8c197 100644 --- a/cmd/tools.go +++ b/cmd/tools.go @@ -90,10 +90,10 @@ var encryptRSACmd = &cobra.Command{ Use: "encrypt-with-rsa