From a444e46d9dbd5dcf76fdab07a3be32907c6128a4 Mon Sep 17 00:00:00 2001 From: Xyphuz Date: Sun, 8 May 2022 00:47:31 +0800 Subject: [PATCH] fix: add missing requirements.txt --- .github/workflows/ci.yml | 3 +-- requirements.txt | 2 ++ 2 files changed, 3 insertions(+), 2 deletions(-) create mode 100644 requirements.txt diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1ac51c8..4db210e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -89,6 +89,5 @@ jobs: - name: Validate Custom Input File run: | - pip install pytest - pip install pytest-cov + pip install -r requirements.txt pytest diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..21ff51d --- /dev/null +++ b/requirements.txt @@ -0,0 +1,2 @@ +pytest==7.1.1 +typer==0.4.1