"docs/source/vscode:/vscode.git/clone" did not exist on "bc2fef9c320601194b23da889fcfcbb7ce9701a9"
task_unit_test.bat 341 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
@ECHO OFF
SETLOCAL EnableDelayedExpansion

IF x%1x==xx (
	ECHO Specify backend
	EXIT /B 1
) ELSE (
	SET BACKEND=%1
)

11
12
SET PYTHONPATH=tests;!PYTHONPATH!

13
14
python -m nose -v --with-xunit tests\!BACKEND! || EXIT /B 1
python -m nose -v --with-xunit tests\graph_index || EXIT /B 1
15
python -m nose -v --with-xunit tests\compute || EXIT /B 1
16
EXIT /B