Even more reliable pillar timeout test #378
This file contains hidden or 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
| name: Full scenarios tests | |
| on: | |
| push: | |
| branches: [openSUSE/release/3006.0] | |
| pull_request: | |
| branches: [openSUSE/release/3006.0] | |
| workflow_dispatch: | |
| jobs: | |
| full-scenarios-tests: | |
| runs-on: ubuntu-latest | |
| env: | |
| GITHUB_ACTIONS: 1 | |
| container: | |
| image: registry.opensuse.org/systemsmanagement/saltstack/products/testing/containers/leap15.6/containers/salt-testsuite-github:leap15.6 | |
| options: --hostname=salt-test-container | |
| steps: | |
| - name: Checkout Salt | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 #v4 | |
| - name: Fix the Salt version in _version.txt file | |
| run: rpm -q python3-salt-testsuite --queryformat '%{VERSION}' > $GITHUB_WORKSPACE/salt/_version.txt | |
| - name: Run Full scenarios tests | |
| run: | | |
| salt-test --skiplist https://raw.githubusercontent.com/openSUSE/salt-test-skiplist/main/skipped_tests.toml \ | |
| --directory . --package-flavor classic scenarios -- --core-tests --slow --run-expensive --ssh-tests --run-destructive -vvv --color=yes |