From 2579854be6b03709b666b984a08d7a1c427d1e23 Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone <exarkun@twistedmatrix.com> Date: Mon, 9 Mar 2020 14:19:56 -0400 Subject: [PATCH] Try to get all the test requirements --- .github/workflows/ci.yaml | 1 + test-requirements.txt | 3 +++ 2 files changed, 4 insertions(+) create mode 100644 test-requirements.txt diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 8b30315..5c63917 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -49,6 +49,7 @@ jobs: - name: "Install Dependencies" run: | $Env:PIP_FIND_LINKS = "./wheelhouse" + python -m pip install -r test-requirements.txt python -m pip install ./ - name: "Run Tests" diff --git a/test-requirements.txt b/test-requirements.txt new file mode 100644 index 0000000..6886866 --- /dev/null +++ b/test-requirements.txt @@ -0,0 +1,3 @@ +fixtures +testtools +hypothesis -- GitLab