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).
This commit is contained in:
Daniel Uber 2021-03-17 10:27:59 -05:00 committed by GitHub
parent 9e906af519
commit 91b99fce7a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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"
SENDGRID_API_KEY="Optional, Production only"
# Disable simplecov coverage testing when running rspec locally
COVERAGE="false"