mirror of
https://github.com/IRBorisov/ConceptPortal.git
synced 2025-06-26 21:10:38 +03:00
12 lines
256 B
PowerShell
12 lines
256 B
PowerShell
# Run tests
|
|
Set-Location $PSScriptRoot\backend
|
|
|
|
$pyExec = "$PSScriptRoot\backend\venv\Scripts\python.exe"
|
|
$djangoSrc = "$PSScriptRoot\backend\manage.py"
|
|
|
|
& $pyExec $djangoSrc check
|
|
& $pyExec $djangoSrc test
|
|
|
|
Set-Location $PSScriptRoot\frontend
|
|
|
|
& npm test |