Skip to content

Commit 75a2a4f

Browse files
committed
Merge #17726: ci: Use python 3.7 on Windows Github Actions
fabd5b4 ci: Use python 3.7 on Windows Github Actions (MarcoFalke) Pull request description: This mirrors the appveyor config https://github.com/bitcoin/bitcoin/blob/7da9e3a8171f976a9e01ee55ab9fe79bd1f033d1/.appveyor.yml#L10 and is needed for PEP 540 ACKs for top commit: sipsorcery: tACK fabd5b4. laanwj: ACK fabd5b4 Tree-SHA512: 2d0118bf4eb5ec510d1ad6e287d35bf28cc800101fa18704c119c7bc84f545aaa236ffe45dc425559e6bd896610302a133b2c50ccdcd3ced6e4d6f8302de7cdb
2 parents 0192bd0 + fabd5b4 commit 75a2a4f

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@ jobs:
1515
steps:
1616
- uses: actions/checkout@v1
1717

18+
- uses: actions/setup-python@v1
19+
with:
20+
python-version: '3.7' # Needed for PEP 540
21+
1822
- uses: actions/cache@v1
1923
id: vcpkgcache
2024
with:
@@ -67,10 +71,7 @@ jobs:
6771
- name: rpcauth-test
6872
shell: cmd
6973
run: python test\util\rpcauth-test.py
70-
# This step fails due to character UTF encoding error. If anyone knows how Python deals with Unicode they might be
71-
# able to decipher the error message.
72-
# - name: test_runner
73-
# shell: cmd
74-
# run: |
75-
# python test\functional\test_runner.py --ansi --ci --quiet --combinedlogslen=4000 --failfast --exclude feature_fee_estimation
76-
74+
- name: test_runner
75+
shell: cmd
76+
run: |
77+
python test\functional\test_runner.py --ansi --ci --quiet --combinedlogslen=4000 --failfast --exclude feature_fee_estimation

0 commit comments

Comments
 (0)