Skip to content

Commit

Permalink
Remove -coverpkg flag to stop OOM issues.
Browse files Browse the repository at this point in the history
CircleCI was getting OOM errors since the go-getter package was
included. I'm removing the -coverpkg flag for now.
  • Loading branch information
lkysow committed Mar 14, 2019
1 parent 765f7d6 commit 8493dc9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ jobs:
steps:
- checkout
- run: make test-coverage
- run: make check-fmt
- run: make check-lint
- run:
name: post coverage to codecov.io
command: bash <(curl -s https://codecov.io/bash)
- run: make check-fmt
- run: make check-lint
e2e:
working_directory: /go/src/github.com/runatlantis/atlantis
docker:
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ test-all: ## Run tests including integration

test-coverage:
@mkdir -p .cover
@go test -coverpkg $(PKG_COMMAS) -coverprofile .cover/cover.out $(PKG)
@go test -covermode atomic -coverprofile .cover/cover.out $(PKG)

test-coverage-html:
@mkdir -p .cover
Expand Down

0 comments on commit 8493dc9

Please sign in to comment.