mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-11 18:26:50 +00:00
9 lines
503 B
PowerShell
9 lines
503 B
PowerShell
# This test script :
|
|
# - prepares the database for rspec tests
|
|
# - launches the rspec tests
|
|
$DateTime=Get-Date -Format "yyyyMMdd-HHmmss"
|
|
|
|
Write-Host "bundle exec rake db:test:prepare : prepare the database for rspec tests" -ForegroundColor Blue
|
|
docker compose run web bundle exec rake db:test:prepare > log/test-prepare-$DateTime.log 2>&1
|
|
Write-Host "bundle exec rspec spec : launch the rspec tests" -ForegroundColor Blue
|
|
docker compose run web bundle exec rspec spec > log/test-rspec-$DateTime.log 2>&1 |