dmlc--dgl
025e43210f
* pass gcn * example tests * pass gcnii, hgnn, sgc, sign * black * test file * add torchmetrics * migrate appnp, c_and_s, twirls * fix style * minor fix * fix hypergraphatt and twirls * pass gat * fix torchmetric * lintrunner Co-authored-by: Mufei Li <mufeili1996@gmail.com>
22 行
572 B
Batchfile
22 行
572 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\!DGLBACKEND! || EXIT /B 1
|
|
python -m pytest -v --junitxml=pytest_compute.xml --durations=100 tests\compute || EXIT /B 1
|
|
ENDLOCAL
|
|
EXIT /B
|