Skip to content

docs: add troubleshooting guide #14

docs: add troubleshooting guide

docs: add troubleshooting guide #14

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: pip
- run: pip install -e ".[dev]"
- run: ruff check .
- run: mypy
- run: pytest tests/
conformance:
runs-on: ubuntu-latest
needs: build
services:
streamline:
image: ghcr.io/streamlinelabs/streamline:0.2.0
ports:
- 9092:9092
- 9094:9094
options: >-
--health-cmd "curl -sf http://localhost:9094/health"
--health-interval 5s
--health-timeout 3s
--health-retries 10
--health-start-period 5s
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: pip
- run: pip install -e ".[dev]"
- name: Run conformance tests
env:
STREAMLINE_BOOTSTRAP: localhost:9092
STREAMLINE_HTTP: http://localhost:9094
run: pytest tests/test_conformance.py -v