feat(ci): Always run each test suite

This commit is contained in:
Carlos Álvaro
2022-11-09 16:58:01 +01:00
committed by Carlos Álvaro
parent 4b5ebaa95a
commit b4cd1338c0
2 changed files with 5 additions and 0 deletions

View File

@@ -131,12 +131,15 @@ jobs:
python-version: '3.10'
- name: Execute basic tests
if: always()
run: tests/basic/test.sh
- name: Execute salt-api tests
if: always()
run: tests/salt-api/test.sh
- name: Execute gitfs tests
if: always()
env:
GITFS_KEYS_DIR: tests/gitfs/data/keys/gitfs
SSH_PRIVATE_KEY: ${{ secrets.TESTS_REPO_PRIVATE_KEY }}
@@ -150,6 +153,7 @@ jobs:
tests/gitfs/test.sh
- name: Execute config-reloader tests
if: always()
run: tests/config-reloader/test.sh
- name: Cleanup

View File

@@ -6,6 +6,7 @@ for the list of changes in SaltStack.
**3005.1_2**
- CI(tests): Always run tests.
- CI: Improve build times.
**3005.1_1**