From fe35f82f25dcf73d9fd1ead4f2cdd08cb5eda544 Mon Sep 17 00:00:00 2001
From: Jean-Paul Calderone <exarkun@twistedmatrix.com>
Date: Mon, 7 Oct 2019 15:16:28 -0400
Subject: [PATCH] comment about our test command

---
 .circleci/config.yml | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/.circleci/config.yml b/.circleci/config.yml
index 691d798..b2543fc 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -113,6 +113,13 @@ jobs:
       - run:
           name: "Run Test Suite"
           command: |
+            # Building the package has, as a side effect, running the test
+            # suite.  If the test suite fails, so does the build.
+            #
+            # Pass in a couple args here to control how the test suite is run
+            # - configure Hypothesis so it can behave appropriately in a CI
+            # environment (where resources are scarce, competetion with other
+            # tenants is high, etc) and collect coverage information.
             nix-build --argstr hypothesisProfile ci --arg collectCoverage true --attr doc
 
       - save_cache:
-- 
GitLab