From 91b99fce7afe159980d2ac48c6f41f0d726e445d Mon Sep 17 00:00:00 2001 From: Daniel Uber Date: Wed, 17 Mar 2021 10:27:59 -0500 Subject: [PATCH] Add and document COVERAGE environment variable in the sample (#13013) Running coverage is great, but it's definitely something I don't want to do when interactively using the test suite (running a single file or single example, this adds 20+ seconds for me). --- .env_sample | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.env_sample b/.env_sample index 178cb5ed8..1a9fcf4c3 100644 --- a/.env_sample +++ b/.env_sample @@ -160,4 +160,8 @@ GITHUB_SECRET="Optional" # For Sendgrid email # https://sendgrid.com/docs/for-developers/sending-email/upgrade-your-authentication-method-to-api-keys/#upgrade-to-api-keys-for-your-smtp-integration -SENDGRID_API_KEY="Optional, Production only" \ No newline at end of file +SENDGRID_API_KEY="Optional, Production only" + + +# Disable simplecov coverage testing when running rspec locally +COVERAGE="false" \ No newline at end of file