Merge pull request #370 from n1rna/fix/multi-wallet-bitcoind-connection #415
This file contains 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: Bitcoinlib Windows Unittests | |
on: [push] | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v3 | |
with: | |
python-version: '3.11' | |
architecture: 'x64' | |
- name: Install dependencies | |
run: | | |
python -m pip install .[dev] | |
- name: Test with coverage | |
env: | |
BCL_CONFIG_FILE: config.ini.unittest | |
UNITTESTS_FULL_DATABASE_TEST: False | |
PYTHONUTF8: 1 | |
run: coverage run --source=bitcoinlib -m unittest -v |