ci: Use python 3.7 on Windows Github Actions

This commit is contained in:
MarcoFalke 2019-12-11 13:41:55 -05:00
parent f1d3d3430e
commit fabd5b444e
No known key found for this signature in database
GPG key ID: CE2B75697E69A548

View file

@ -15,6 +15,10 @@ jobs:
steps: steps:
- uses: actions/checkout@v1 - uses: actions/checkout@v1
- uses: actions/setup-python@v1
with:
python-version: '3.7' # Needed for PEP 540
- uses: actions/cache@v1 - uses: actions/cache@v1
id: vcpkgcache id: vcpkgcache
with: with:
@ -67,10 +71,7 @@ jobs:
- name: rpcauth-test - name: rpcauth-test
shell: cmd shell: cmd
run: python test\util\rpcauth-test.py run: python test\util\rpcauth-test.py
# This step fails due to character UTF encoding error. If anyone knows how Python deals with Unicode they might be - name: test_runner
# able to decipher the error message. shell: cmd
# - name: test_runner run: |
# shell: cmd python test\functional\test_runner.py --ansi --ci --quiet --combinedlogslen=4000 --failfast --exclude feature_fee_estimation
# run: |
# python test\functional\test_runner.py --ansi --ci --quiet --combinedlogslen=4000 --failfast --exclude feature_fee_estimation