ConceptPortal-public/rsconcept/RunTests.ps1

12 lines
256 B
PowerShell
Raw Normal View History

2023-07-15 17:46:19 +03:00
# Run tests
Set-Location $PSScriptRoot\backend
$pyExec = "$PSScriptRoot\backend\venv\Scripts\python.exe"
$djangoSrc = "$PSScriptRoot\backend\manage.py"
& $pyExec $djangoSrc check
2023-08-01 23:43:43 +03:00
& $pyExec $djangoSrc test
Set-Location $PSScriptRoot\frontend
& npm test