ci: mispelled workflow title #2
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: Pytest Tests | |
| on: | |
| push: | |
| branches: | |
| - "test-v*" | |
| pull_request: | |
| branches: | |
| - "test-v*" | |
| jobs: | |
| test: | |
| name: Run Pytest Tests on ${{ github.ref_name }} | |
| runs-on: ubuntu-22.04 | |
| timeout-minutes: 60 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up Python 3.10 | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.10" | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v5 | |
| - name: Install dependencies | |
| run: | | |
| bash -x .github/scripts/setup.sh | |
| - name: Install bitcoind | |
| run: .github/scripts/install-bitcoind.sh | |
| - name: Configure | |
| run: ./configure --enable-debugbuild --enable-rust | |
| - name: Build | |
| run: | | |
| uv run make -j $(nproc) | |
| - name: Run Tests | |
| env: | |
| SLOW_MACHINE: 1 | |
| PYTEST_PAR: 10 | |
| TEST_DEBUG: 1 | |
| TEST_DB_PROVIDER: sqlite3 | |
| TEST_NETWORK: regtest | |
| EXPERIMENTAL_DUAL_FUND: 1 | |
| EXPERIMENTAL_SPLICING: 1 | |
| COMPAT: 1 | |
| run: | | |
| uv run pytest tests/ -vvv -n ${PYTEST_PAR} --timeout=1200 |