mirror of
https://github.com/saltstack/salt-bootstrap.git
synced 2025-04-16 09:40:21 +00:00
Updated Python dependencies
This commit is contained in:
parent
a902af3c53
commit
5d0e68b3ee
3 changed files with 9 additions and 6 deletions
5
.github/workflows/test-linux.yml
vendored
5
.github/workflows/test-linux.yml
vendored
|
@ -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: |
|
||||
|
|
5
.github/workflows/test-macos.yml
vendored
5
.github/workflows/test-macos.yml
vendored
|
@ -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: |
|
||||
|
|
5
.github/workflows/test-windows.yml
vendored
5
.github/workflows/test-windows.yml
vendored
|
@ -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: |
|
||||
|
|
Loading…
Add table
Reference in a new issue