Skip to content

Commit fabd5b4

Browse files
author
MarcoFalke
committed
ci: Use python 3.7 on Windows Github Actions
1 parent f1d3d34 commit fabd5b4

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)