From 4a9a3a7fbed4e1670b676203d8ae318f9182ba71 Mon Sep 17 00:00:00 2001 From: Alexey Naiden Date: Wed, 28 Oct 2020 17:59:00 -0400 Subject: [PATCH] Attempt to fix Windows e2e tests after release --- .github/workflows/cd.yaml | 8 +++++++- neuro_extras/version.py | 2 +- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cd.yaml b/.github/workflows/cd.yaml index a8fc3b20..07223b54 100644 --- a/.github/workflows/cd.yaml +++ b/.github/workflows/cd.yaml @@ -215,7 +215,13 @@ jobs: aws-access-key-id: ${{ secrets.E2E_COOKIECUTTER_AWS_KEY_ID }} aws-secret-access-key: ${{ secrets.E2E_COOKIECUTTER_AWS_ACCESS_KEY }} aws-region: us-east-1 - - name: Run e2e tests + - name: Run e2e tests on MacOS and Linux + if: matrix.os != 'windows' run: | unset NEURO_EXTRAS_IMAGE # clear this env var to test it in real make test_e2e + - name: Run e2e tests on Windows + if: matrix.os == 'windows' + run: | + Remove-Item Env:\NEURO_EXTRAS_IMAGE # clear this env var to test it in real + make test_e2e diff --git a/neuro_extras/version.py b/neuro_extras/version.py index 8f59491a..f4ef25c0 100644 --- a/neuro_extras/version.py +++ b/neuro_extras/version.py @@ -1,3 +1,3 @@ # Note: version MUST be in format '20.10.23a6' because it defines the docker image # that we use, see tags in https://hub.docker.com/r/neuromation/neuro-extras/tags -__version__ = "20.10.28.post4" +__version__ = "20.10.28.post5"