Bitcoinlib Tests Windows #236
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 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.9' | |
architecture: 'x64' | |
- name: Install dependencies | |
run: | | |
pip install win-unicode-console | |
pip install coveralls | |
pip install psycopg2 | |
pip install mysql-connector | |
pip install mysqlclient | |
pip install parameterized | |
pip install scrypt | |
python setup.py install | |
- name: Test with coverage | |
env: | |
BCL_CONFIG_FILE: config.ini.unittest | |
UNITTESTS_FULL_DATABASE_TEST: False | |
run: coverage run --source=bitcoinlib -m unittest -v |