Skip to content

Commit

Permalink
Attempt to fix Windows e2e tests after release
Browse files Browse the repository at this point in the history
  • Loading branch information
anayden committed Oct 28, 2020
1 parent f392f94 commit 4a9a3a7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/cd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion neuro_extras/version.py
Original file line number Diff line number Diff line change
@@ -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"

0 comments on commit 4a9a3a7

Please sign in to comment.