Skip to content

Patch spendbundle to_json_dict to not use the legacy keys #232

Patch spendbundle to_json_dict to not use the legacy keys

Patch spendbundle to_json_dict to not use the legacy keys #232

Workflow file for this run

name: Run Test Suite
on:
workflow_dispatch:
push:
branches:
- main
tags:
- '**'
pull_request:
branches:
- '**'
concurrency:
group: ${{ github.ref }}-${{ github.workflow }}-${{ github.event_name }}--${{ (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/heads/release/') || startsWith(github.ref, 'refs/heads/long_lived/')) && github.sha || '' }}
cancel-in-progress: true
jobs:
build:
name: All tests
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Checkout Code
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Python environment
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Test code with pytest
run: |
python3 -m venv venv
. ./venv/bin/activate
pip install .[dev]
./venv/bin/py.test tests/ -s -v --durations 0