From 745970cd1a715620d2668c8aaf614a4259d10e9a Mon Sep 17 00:00:00 2001 From: Ayushman Chhabra <14110965+ayushmanchhabra@users.noreply.github.com> Date: Sun, 21 Apr 2024 14:39:36 +0530 Subject: [PATCH] chore(ci): install pip deps --- .github/dependabot.yml | 8 ++++++++ .github/workflows/e2e.yml | 4 ++++ requirements.txt | 1 + 3 files changed, 13 insertions(+) create mode 100644 requirements.txt diff --git a/.github/dependabot.yml b/.github/dependabot.yml index bbe043b..daca091 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -16,3 +16,11 @@ updates: gha: patterns: - "*" + - package-ecosystem: "pip" + directory: "." + schedule: + interval: "daily" + groups: + pip: + patterns: + - "*" diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index 3c045cf..a48bb4a 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -28,6 +28,10 @@ jobs: uses: actions/setup-python@v5.1.0 with: python-version: '3.10' + - name: Install Pip dependencies + run: | + python -m pip install --upgrade pip + pip install -r requirements.txt - name: Compile and test run: | make debug diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..2dd06ab --- /dev/null +++ b/requirements.txt @@ -0,0 +1 @@ +pytest == 8.1.1