Merge pull request #421 from 1200wd/add-blockbook-docu #364
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 Tests Ubuntu - No scrypt | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
architecture: 'x64' | |
- name: Install dependencies | |
run: | | |
python -m pip install .[dev] | |
pip uninstall -y scrypt | |
- name: Test with coverage | |
env: | |
BCL_CONFIG_FILE: ${{ github.workspace }}/tests/config_encryption.ini.unittest | |
DB_FIELD_ENCRYPTION_KEY: 11223344556677889900aabbccddeeff11223344556677889900aabbccddeeff | |
run: coverage run --source=bitcoinlib -m unittest -v |