ConceptPortal-public/rsconcept/RunTests.ps1
2023-08-01 23:43:43 +03:00

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