Retries in the nodes check in setup_old_versioned_cluster #2351
Workflow file for this run
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
name: Unit Tests | |
on: | |
- pull_request | |
jobs: | |
check-unit-tests: | |
name: Check Unit Tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install tox --fix-missing | |
sudo pip3 install -U pytest==7.1.3 sh==1.14.3 | |
- name: Check Units | |
run: | | |
tox -e scripts | |
tox -e wrappers | |
tox -e cluster | |
- name: Verify branches | |
run: | | |
pytest -s ./tests/verify-branches.py |