From 1a8f5466df7c69a108a2016a27e3da6351314c32 Mon Sep 17 00:00:00 2001
From: Jean-Paul Calderone <exarkun@twistedmatrix.com>
Date: Tue, 26 May 2020 10:42:29 -0400
Subject: [PATCH] speed up this iteration

---
 .circleci/config.yml      | 2 +-
 .github/workflows/ci.yaml | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/.circleci/config.yml b/.circleci/config.yml
index f0a4bc1..688dd99 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -125,7 +125,7 @@ jobs:
             #
             # Also limit the number of concurrent jobs because of resource
             # constraints on CircleCI. :/
-            nix-build --cores 1 --max-jobs 1 --argstr hypothesisProfile ci --arg collectCoverage true --attr doc
+            nix-build --cores 1 --max-jobs 1 --arg trialArgs '["--dry-run"]' --argstr hypothesisProfile ci --arg collectCoverage true --attr doc
 
       - save_cache:
           name: "Cache Nix Store Paths"
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
index c899597..9bb1596 100644
--- a/.github/workflows/ci.yaml
+++ b/.github/workflows/ci.yaml
@@ -59,7 +59,7 @@ jobs:
       env:
         MAGIC_FOLDER_HYPOTHESIS_PROFILE: "ci"
       run: |
-        python -m coverage run --debug=config -m twisted.trial _zkapauthorizer
+        python -m coverage run --dry-run --debug=config -m twisted.trial _zkapauthorizer
 
     - name: "Convert Coverage"
       run: |
-- 
GitLab