dmlc--dgl
86193c26f7
* rename * remove test transpose * udpate * rename * cleanup --------- Co-authored-by: Ubuntu <ubuntu@ip-172-31-28-63.ap-northeast-1.compute.internal>
22 行
584 B
Batchfile
22 行
584 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 pip install pytest psutil pandas pyyaml pydantic rdflib torchmetrics || EXIT /B 1
|
|
python -m pytest -v --junitxml=pytest_backend.xml --durations=100 tests\python\!DGLBACKEND! || EXIT /B 1
|
|
python -m pytest -v --junitxml=pytest_common.xml --durations=100 tests\python\common || EXIT /B 1
|
|
ENDLOCAL
|
|
EXIT /B
|