Skip to content

Commit

Permalink
Change config.ini reference
Browse files Browse the repository at this point in the history
  • Loading branch information
Cryp Toon committed Feb 26, 2024
1 parent dbf6883 commit 0f60ee8
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/unittests-mysql.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@ jobs:
python -m pip install .[dev]
- name: Test with coverage
env:
BCL_CONFIG_FILE: ./config.ini.unittest
BCL_CONFIG_FILE: ${{ github.workspace }}/config.ini.unittest
UNITTEST_DATABASE: mysql
run: coverage run --source=bitcoinlib -m unittest -v
2 changes: 1 addition & 1 deletion .github/workflows/unittests-noscrypt.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ jobs:
pip uninstall -y scrypt
- name: Test with coverage
env:
BCL_CONFIG_FILE: ./config_encryption.ini.unittest
BCL_CONFIG_FILE: ${{ github.workspace }}/config_encryption.ini.unittest
DB_FIELD_ENCRYPTION_KEY: 11223344556677889900aabbccddeeff11223344556677889900aabbccddeeff
run: coverage run --source=bitcoinlib -m unittest -v
2 changes: 1 addition & 1 deletion .github/workflows/unittests-postgresql.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
python -m pip install .[dev]
- name: Test with coverage
env:
BCL_CONFIG_FILE: ./config.ini.unittest
BCL_CONFIG_FILE: ${{ github.workspace }}/config.ini.unittest
UNITTEST_DATABASE: postgresql
DB_FIELD_ENCRYPTION_PASSWORD: verybadpassword
run: coverage run --source=bitcoinlib -m unittest -v
2 changes: 1 addition & 1 deletion .github/workflows/unittests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
python -m pip install .[dev]
- name: Test with coverage
env:
BCL_CONFIG_FILE: ./config.ini.unittest
BCL_CONFIG_FILE: ${{ github.workspace }}/config.ini.unittest
run: coverage run --source=bitcoinlib -m unittest -v

- name: Coveralls
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unittests_windows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ jobs:
python -m pip install .[dev]
- name: Test with coverage
env:
BCL_CONFIG_FILE: ./config.ini.unittest
BCL_CONFIG_FILE: ${{ github.workspace }}/config.ini.unittest
PYTHONUTF8: 1
run: coverage run --source=bitcoinlib -m unittest -v

0 comments on commit 0f60ee8

Please sign in to comment.