diff --git a/package.json b/package.json index 23cb79e0e..335b9d2c3 100644 --- a/package.json +++ b/package.json @@ -10,11 +10,7 @@ "coverage": "npm run unit && c8 node output/index.mjs && c8 report --reporter=html", "integration": "rm -rf output && cp test/abap_transpile.json test/abap_transpile_int.json && sed -i 's/zcl_abapgit_auth/zcl_abapgit_integration_git/g' test/abap_transpile_int.json && abap_transpile test/abap_transpile_int.json && echo RUNNING && node output/index.mjs", "abaplint": "abaplint --format codeframe", - "eslint": "eslint src", - "docker-build": "docker-compose -f test/docker-compose.yml build", - "docker-up": "docker-compose -f test/docker-compose.yml up", - "docker-unit": "docker-compose -f test/docker-compose.yml run --workdir=\"/home/node/abapGit\" abapgit npm run-script unit", - "docker-down": "docker-compose -f test/docker-compose.yml down" + "eslint": "eslint src" }, "repository": { "type": "git", diff --git a/test/Dockerfile b/test/Dockerfile deleted file mode 100644 index 56e49837d..000000000 --- a/test/Dockerfile +++ /dev/null @@ -1,8 +0,0 @@ -FROM node - -ARG TINI_VERSION=v0.19.0 - -ADD https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini /usr/local/bin/tini -RUN chmod a+x /usr/local/bin/tini - -ENTRYPOINT ["/usr/local/bin/tini", "--"] \ No newline at end of file diff --git a/test/docker-compose.yml b/test/docker-compose.yml deleted file mode 100644 index 13ac875b4..000000000 --- a/test/docker-compose.yml +++ /dev/null @@ -1,21 +0,0 @@ -version: '3.4' - -services: - abapgit: - image: abapgit - build: - context: . - dockerfile: ./Dockerfile - environment: - NODE_ENV: development - networks: - default: - volumes: - - ..:/home/node/abapGit - # links: - # - httpEndpoint:httpbin.com - # depends_on: - # - httpEndpoint - # httpEndpoint: - # image: hashicorp/http-echo - # command: -text="Hello World" -listen=:80 \ No newline at end of file