Skip to content

add liveness check to test_logging.py #305

add liveness check to test_logging.py

add liveness check to test_logging.py #305

Workflow file for this run

name: test
on:
pull_request:
push:
branches:
- dev
env:
UV_SYSTEM_PYTHON: 1
jobs:
ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: curl -LsSf https://astral.sh/uv/install.sh | sh
- run: uvx ruff check .
ruff-format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: curl -LsSf https://astral.sh/uv/install.sh | sh
- run: uvx ruff format . --check
test:
runs-on: ubuntu-latest
strategy:
matrix:
# test: [scenarios_test.py, rpc_test.py, graph_test.py, ln_test.py, dag_connection_test.py, logging_test.py]
test: [scenarios_test.py, rpc_test.py, dag_connection_test.py, logging_test.py]
steps:
- uses: actions/checkout@v4
- uses: azure/[email protected]
- uses: medyagh/setup-minikube@master
- name: Install uv
run: |
curl -LsSf https://astral.sh/uv/install.sh | sh
- name: Install project
run: uv sync --all-extras --dev
- name: Run tests
run: |
source .venv/bin/activate
./test/${{matrix.test}}