From fd606656bf516bdc2fd28871dabd0947a002f641 Mon Sep 17 00:00:00 2001 From: Johnny Bieren Date: Tue, 10 Oct 2023 07:44:03 -0400 Subject: [PATCH] chore: add requirements.txt file Signed-off-by: Johnny Bieren --- .github/workflows/python.yaml | 2 +- requirements.txt | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 requirements.txt diff --git a/.github/workflows/python.yaml b/.github/workflows/python.yaml index 28ea1b2..2f2dbd7 100644 --- a/.github/workflows/python.yaml +++ b/.github/workflows/python.yaml @@ -22,5 +22,5 @@ jobs: uses: py-actions/flake8@v2 - name: Run pytest run: | - python -m pip install pytest requests + python -m pip install -r requirements.txt pytest diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..547de5c --- /dev/null +++ b/requirements.txt @@ -0,0 +1,2 @@ +pytest +requests