[FIX] Correctly parse arguments in bitcoindclient #97
Workflow file for this run
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: | | |
pip install coveralls | |
pip install psycopg2 | |
pip install mysql-connector | |
pip install mysqlclient | |
pip install parameterized | |
pip install Cython | |
python setup.py install | |
- 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 |