Skip to content

Commit

Permalink
CI TST Only use activate for conda builds on windows (#13517)
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasjpfan authored and adrinjalali committed Mar 26, 2019
1 parent ab399a6 commit 5ff64d3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion build_tools/azure/test_script.cmd
@@ -1,6 +1,9 @@
@echo on

call activate %VIRTUALENV%
@rem Only 64 bit uses conda
IF "%PYTHON_ARCH%"=="64" (
call activate %VIRTUALENV%
)

mkdir %TMP_FOLDER%
cd %TMP_FOLDER%
Expand Down
5 changes: 4 additions & 1 deletion build_tools/azure/upload_codecov.cmd
@@ -1,6 +1,9 @@
@echo on

call activate %VIRTUALENV%
@rem Only 64 bit uses conda
IF "%PYTHON_ARCH%"=="64" (
call activate %VIRTUALENV%
)

copy %TMP_FOLDER%\.coverage %BUILD_REPOSITORY_LOCALPATH%

Expand Down

0 comments on commit 5ff64d3

Please sign in to comment.