From b641140ca1bc5bb218b673a42350092aa8f5c492 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20=C4=8Cert=C3=ADk?= Date: Wed, 15 May 2019 16:42:20 -0600 Subject: [PATCH] Win: install using pip --- appveyor.yml | 4 +++- ci/appveyor_build.bat | 4 +--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 0f2afa96e5..b03798579f 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -11,4 +11,6 @@ build_script: test_script: - set CONDA_INSTALL_LOCN=C:\\Miniconda37-x64 - call %CONDA_INSTALL_LOCN%\Scripts\activate.bat -- pytest +- mkdir tmp +- cd tmp +- pytest --pyargs lfortran diff --git a/ci/appveyor_build.bat b/ci/appveyor_build.bat index e4944e24c5..a696fa5823 100755 --- a/ci/appveyor_build.bat +++ b/ci/appveyor_build.bat @@ -33,9 +33,7 @@ set BUILD_TYPE=Debug call :check call %CONDA_INSTALL_LOCN%\Scripts\activate.bat call :check -cmake -G "Visual Studio 15 2017 Win64" -DCMAKE_INSTALL_PREFIX=%cd% . -call :check -cmake --build . --config %BUILD_TYPE% --target install +pip install -v . call :check :: -----------------------------------------------------------------------------