diff options
author | MarcoFalke <falke.marco@gmail.com> | 2019-12-11 13:41:55 -0500 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2019-12-11 15:30:23 -0500 |
commit | fabd5b444ef83b5cd0d63b33bbf6ea4e7557d0eb (patch) | |
tree | 9f7ce5a1f63723aa61aaaa661134544ba264521f /.github/workflows/ci.yml | |
parent | f1d3d3430e3b89e48a879a7645c3c91efa46f156 (diff) |
ci: Use python 3.7 on Windows Github Actions
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r-- | .github/workflows/ci.yml | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f1d5efaa8d..9756ebba1d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,6 +15,10 @@ jobs: steps: - uses: actions/checkout@v1 + - uses: actions/setup-python@v1 + with: + python-version: '3.7' # Needed for PEP 540 + - uses: actions/cache@v1 id: vcpkgcache with: @@ -67,10 +71,7 @@ jobs: - name: rpcauth-test shell: cmd 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 -# able to decipher the error message. -# - name: test_runner -# shell: cmd -# run: | -# python test\functional\test_runner.py --ansi --ci --quiet --combinedlogslen=4000 --failfast --exclude feature_fee_estimation - + - name: test_runner + shell: cmd + run: | + python test\functional\test_runner.py --ansi --ci --quiet --combinedlogslen=4000 --failfast --exclude feature_fee_estimation |