Advertisement
Guest User

Untitled

a guest
Feb 20th, 2017
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. image: dizzy7/gitlab-ci:0.2.3
  2.  
  3. services:
  4. - postgres:9.5
  5. - redis:latest
  6. - selenium/standalone-firefox:2.53.1
  7.  
  8. variables:
  9. POSTGRES_DB: shkolis_test
  10. POSTGRES_USER: shkolis
  11. POSTGRES_PASSWORD: shkolis
  12.  
  13. cache:
  14. paths:
  15. - vendor/
  16.  
  17. stages:
  18. - test
  19.  
  20. test:
  21. script:
  22. - composer install -n --no-ansi
  23. - php bin/console do:da:cr -e test --if-not-exists
  24. - php bin/console do:mi:mi -e test -n
  25. - php bin/console ca:cl -e test
  26. - php tests.php run tests/acceptance/
  27. - php tests.php run tests/functional/
  28. - php tests.php run tests/rest/
  29. artifacts:
  30. when: on_failure
  31. paths:
  32. - tests/_output
  33. - var/logs/*.log
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement