Merge pull request #366 from 1200wd/bugfix-202401 #142
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 Unittests Coveralls Ubuntu - No scrypt | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v3 | |
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: config_encryption.ini.unittest | |
UNITTESTS_FULL_DATABASE_TEST: False | |
DB_FIELD_ENCRYPTION_KEY: 11223344556677889900aabbccddeeff11223344556677889900aabbccddeeff | |
run: coverage run --source=bitcoinlib -m unittest -v |