Skip to content

more debugging

more debugging #97

Workflow file for this run

name: run
on:
push:
branches:
- main
- ci
pull_request:
branches:
- main
jobs:
# --- testing on Windows ------------------------------------------
tests-windows:
runs-on: windows-latest
timeout-minutes: 10
strategy:
fail-fast: false
matrix:
python-version: ["3.9"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install --upgrade pip setuptools wheel
pip install -e .[testing]
- name: Run test suite
run: |
pytest tests/enqueue_message_test.py::test_can_store_message_on_disk_before_sending