From 4cd1e83ffa3c50af0ce4ccb280c57d245152ae0b Mon Sep 17 00:00:00 2001 From: Tessa Walsh Date: Mon, 13 May 2024 12:01:04 -0400 Subject: [PATCH] Move test requirements to requirements.txt for caching --- .github/workflows/ci.yaml | 2 +- requirements.txt | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 requirements.txt diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 8364d428..92036f8d 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -22,7 +22,7 @@ jobs: - name: Install dependencies run: - pip install brotlipy coverage pytest-cov codecov jinja2<3.0.0 itsdangerous<2.0.0 + pip install -r requirements.txt - name: Install warcio run: python setup.py install diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 00000000..7e1d050a --- /dev/null +++ b/requirements.txt @@ -0,0 +1,6 @@ +brotlipy +coverage +pytest-cov +codecov +jinja2<3.0.0 +itsdangerous<2.0.0