From a6fd87ca9c870709e249bc90731c8f28e27bb35d Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Mon, 23 Sep 2019 07:34:11 -0400 Subject: [PATCH] test --- .circleci/config.yml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 458016e..ff67fe4 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -6,12 +6,9 @@ version: 2 jobs: build: docker: - - image: docker.pkg.github.com/kennethreitz/bake/bake:ci - auth: - username: kennethreitz # can specify string literal values - password: $GITHUB_TOKEN + - image: kennethreitz/bake:ci resource_class: 2xlarge+ - parallelism: 6 + # parallelism: 6 working_directory: /app @@ -29,7 +26,8 @@ jobs: command: | cd tests mkdir -p reports/bats - bats $(circleci tests glob '*.bats' | circleci tests split) > "reports/bats/$CIRCLE_NODE_INDEX.tap" + # bats $(circleci tests glob '*.bats' | circleci tests split) > "reports/bats/$CIRCLE_NODE_INDEX.tap" + bats *.bats > "reports/bats/$CIRCLE_NODE_INDEX.tap" - store_test_results: path: reports