Files
openfoodnetwork/docker/test.ps1
Neal Chambers 21b7e6e567 Use Dockerv2
2024-09-26 09:21:00 +09:00

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