From 5d0e68b3ee59a7a6a0174e7e07b7f6eba1f77e39 Mon Sep 17 00:00:00 2001 From: David Murphy Date: Fri, 8 Nov 2024 10:02:26 -0700 Subject: [PATCH] Updated Python dependencies --- .github/workflows/test-linux.yml | 5 +++-- .github/workflows/test-macos.yml | 5 +++-- .github/workflows/test-windows.yml | 5 +++-- 3 files changed, 9 insertions(+), 6 deletions(-) diff --git a/.github/workflows/test-linux.yml b/.github/workflows/test-linux.yml index 2b5268e..a324690 100644 --- a/.github/workflows/test-linux.yml +++ b/.github/workflows/test-linux.yml @@ -45,9 +45,10 @@ jobs: steps: - uses: actions/checkout@v4 - - name: Install Pytest + - name: Install Python Dependencies run: | - pip install -U pytest + python3 -m pip install -U pip + python3 -m pip install -r tests/requirements.txt - name: Bootstrap Salt run: | diff --git a/.github/workflows/test-macos.yml b/.github/workflows/test-macos.yml index d6c43f0..e0341d6 100644 --- a/.github/workflows/test-macos.yml +++ b/.github/workflows/test-macos.yml @@ -47,9 +47,10 @@ jobs: steps: - uses: actions/checkout@v4 - - name: Install Pytest + - name: Install Python Dependencies run: | - pip install -U pytest + python3 -m pip install -U pip + python3 -m pip install -r tests/requirements.txt - name: Bootstrap Salt run: | diff --git a/.github/workflows/test-windows.yml b/.github/workflows/test-windows.yml index 0451714..df2a114 100644 --- a/.github/workflows/test-windows.yml +++ b/.github/workflows/test-windows.yml @@ -51,9 +51,10 @@ jobs: with: python-version: "3.10" - - name: Install Pytest + - name: Install Python Dependencies run: | - pip install -r tests\requirements.txt + python3 -m pip install -U pip + python3 -m pip install -r tests/requirements.txt - name: Get Version run: |