项目文件夹

文件
Quan (Andy) Gan 6d42005052 [WIP][CI] Build Windows packages within virtualenv (#709)
* try venv for win64

* update

* update

* trying another

* update

* update

* update

* trigger ci

* update

* update
2019-07-12 16:50:54 -07:00

22 行
472 B
Batchfile

@ECHO OFF
SETLOCAL EnableDelayedExpansion
IF x%1x==xx (
ECHO Specify backend
EXIT /B 1
) ELSE (
SET BACKEND=%1
)
CALL workon %BUILD_TAG%
SET PYTHONPATH=tests;!CD!\python;!PYTHONPATH!
SET DGLBACKEND=!BACKEND!
SET DGL_LIBRARY_PATH=!CD!\build
SET DGL_DOWNLOAD_DIR=!CD!
python -m nose -v --with-xunit tests\!DGLBACKEND! || EXIT /B 1
python -m nose -v --with-xunit tests\graph_index || EXIT /B 1
python -m nose -v --with-xunit tests\compute || EXIT /B 1
ENDLOCAL
EXIT /B