From 89874a4451b7d85713ac7acaefca067edc0a68ce Mon Sep 17 00:00:00 2001
From: Jean-Paul Calderone <exarkun@twistedmatrix.com>
Date: Fri, 29 Jan 2021 14:57:21 -0500
Subject: [PATCH] Replace test-requirements.txt with the [test] extra

---
 .github/workflows/ci.yaml | 8 ++------
 test-requirements.txt     | 3 ---
 2 files changed, 2 insertions(+), 9 deletions(-)
 delete mode 100644 test-requirements.txt

diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
index c899597..b0873ff 100644
--- a/.github/workflows/ci.yaml
+++ b/.github/workflows/ci.yaml
@@ -43,13 +43,9 @@ jobs:
       run: |
         python -m pip install -v wheel coverage
 
-    - name: "Install Test Dependencies"
+    - name: "Install ZKAPAuthorizer and dependencies"
       run: |
-        python -m pip install -v -r test-requirements.txt
-
-    - name: "Install ZKAPAuthorizer"
-      run: |
-        python -m pip install -v ./
+        python -m pip install -v ./[test]
 
     - name: "Dump Python Environment"
       run: |
diff --git a/test-requirements.txt b/test-requirements.txt
deleted file mode 100644
index 6886866..0000000
--- a/test-requirements.txt
+++ /dev/null
@@ -1,3 +0,0 @@
-fixtures
-testtools
-hypothesis
-- 
GitLab