-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated GitHub Actions for recent EOL of Python 3.7 and 3.8, using Sa…
…lt 3006.9 and 3007.1, also use of psutil.AccessDenied (#182) * Updated GitHub Actions for recent EOL of Python 3.7 and 3.8, using Salt 3006.9 and 3007.1, also use of psutil.AccessDenied * Added changelog and corrected ubuntu version * Reduced nox version limitation back to original less than 2022.8.7 * Updated requirements and actions * Adjust requirements versions * Limit to Python 3.10, since that is the only version supported at the moment * Altered requirments for pytest-shell-utilities to before psutil==6.0.0 * Updated pytest-shell-utilities version requirement * More playing with requirement versions * Limiting psutil to less than 6.0.0 to avoid net_connections issues * Restricting to pytest-shell-utilities before support for psutil 6.0.0 and net_connections * Remove macos and Salt 3007.1 testing, that is, as before Salt 3006 only
- Loading branch information
Showing
4 changed files
with
27 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -104,7 +104,7 @@ jobs: | |
Linux-System-Service: | ||
runs-on: ubuntu-20.04 | ||
runs-on: ubuntu-22.04 | ||
needs: Pre-Commit | ||
|
||
timeout-minutes: 25 | ||
|
@@ -191,19 +191,16 @@ jobs: | |
max-parallel: 16 | ||
matrix: | ||
python-version: | ||
- "3.8" | ||
- "3.9" | ||
- "3.10" | ||
salt-version: | ||
- "3006.0" | ||
- "3007.0" | ||
- "3006.9" | ||
This comment has been minimized.
Sorry, something went wrong. |
||
- "3007.1" | ||
pytest-version: | ||
- "7.4.0" | ||
- "8.0.0" | ||
- "8.1.0" | ||
exclude: | ||
- {"salt-version": "3007.0", "python-version": "3.8"} | ||
- {"salt-version": "3007.0", "python-version": "3.9"} | ||
- "8.1.1" | ||
- "8.2.0" | ||
- "8.3.3" | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
@@ -282,14 +279,15 @@ jobs: | |
max-parallel: 16 | ||
matrix: | ||
python-version: | ||
- "3.9" | ||
- "3.10" | ||
salt-version: | ||
- "3006.0" | ||
- "3006.9" | ||
pytest-version: | ||
- "7.4.0" | ||
- "8.0.0" | ||
- "8.1.0" | ||
- "8.1.1" | ||
This comment has been minimized.
Sorry, something went wrong.
s0undt3ch
Contributor
|
||
- "8.2.0" | ||
- "8.3.3" | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
@@ -354,7 +352,7 @@ jobs: | |
|
||
|
||
Linux: | ||
runs-on: ubuntu-20.04 | ||
runs-on: ubuntu-22.04 | ||
needs: Pre-Commit | ||
|
||
timeout-minutes: 25 | ||
|
@@ -364,23 +362,16 @@ jobs: | |
max-parallel: 16 | ||
matrix: | ||
python-version: | ||
- "3.7" | ||
- "3.8" | ||
- "3.9" | ||
- "3.10" | ||
salt-version: | ||
- "3006.0" | ||
- "3007.0" | ||
- "3006.9" | ||
- "3007.1" | ||
pytest-version: | ||
- "7.4.0" | ||
- "8.0.0" | ||
- "8.1.0" | ||
exclude: | ||
- {"pytest-version": "8.0.0", "python-version": "3.7"} | ||
- {"pytest-version": "8.1.0", "python-version": "3.7"} | ||
- {"salt-version": "3007.0", "python-version": "3.7"} | ||
- {"salt-version": "3007.0", "python-version": "3.8"} | ||
- {"salt-version": "3007.0", "python-version": "3.9"} | ||
- "8.1.1" | ||
- "8.2.0" | ||
- "8.3.3" | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Updated GitHub Actions for recent EOL of Python 3.7 and 3.8, using Salt 3006.9 and 3007.1, also use of psutil.AccessDenied |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
pytest>=7.0.0 | ||
attrs>=19.2.0 | ||
pytest-helpers-namespace>=2021.4.29 | ||
pytest-skip-markers>=1.1.3 | ||
pytest>=7.4.0 | ||
attrs>=22.2.0 | ||
pytest-helpers-namespace>=2021.12.29 | ||
pytest-skip-markers>=1.5.2 | ||
pytest-system-statistics>=1.0.2 | ||
pytest-shell-utilities>=1.4.0 | ||
psutil | ||
pyyaml | ||
pyzmq | ||
msgpack>=0.5.2 | ||
pytest-shell-utilities<=1.9.0 | ||
psutil<6.0.0 | ||
pyyaml>=6.0.1 | ||
pyzmq>=20.0.0 | ||
msgpack>=1.0.2 | ||
virtualenv |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
You will now always test with this specific version of Salt, instead of the latest minor version available.
Was this the intended behaviour?