From ceb33ca464b051602c5f3d94edcba5b491f334ad Mon Sep 17 00:00:00 2001 From: Alessio Treglia Date: Thu, 23 Aug 2018 08:47:12 +0100 Subject: [PATCH] Rename test_cli to integration_tests Move `make test_examples` into integraton_tests. --- .circleci/config.yml | 19 ++----------------- 1 file changed, 2 insertions(+), 17 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 286cacb7d..269d4ca94 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -63,7 +63,7 @@ jobs: export PATH="$GOBIN:$PATH" make test_lint - test_cli: + integration_tests: <<: *defaults parallelism: 1 steps: @@ -80,21 +80,6 @@ jobs: command: | export PATH="$GOBIN:$PATH" make test_cli - - test_examples: - <<: *defaults - parallelism: 1 - steps: - - attach_workspace: - at: /tmp/workspace - - restore_cache: - key: v1-pkg-cache - - restore_cache: - key: v1-tree-{{ .Environment.CIRCLE_SHA1 }} - - run: - name: Test examples - command: | - export PATH="$GOBIN:$PATH" make test_examples test_sim_modules: @@ -236,7 +221,7 @@ workflows: - lint: requires: - setup_dependencies - - test_cli: + - integration_tests: requires: - setup_dependencies - test_sim_modules: