Guest User

Untitled

a guest
Sep 23rd, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. integration_test:
  2. environment:
  3. CIRCLECI_MODE: true
  4. docker:
  5. - image: checkr/docker-docker-compose
  6. steps:
  7. - checkout
  8. - setup_remote_docker:
  9. version: 18.06.0-ce
  10. docker_layer_caching: true
  11. - run:
  12. name: Setup
  13. command: ./integration_tests/step-1.setup.sh
  14. - run:
  15. name: Build images
  16. command: ./integration_tests/step-2.build-images.sh
  17. - run:
  18. name: Start infra
  19. command: ./integration_tests/step-3.start-infra.sh
  20. - run:
  21. name: Start services
  22. command: ./integration_tests/step-4.start-services.sh
  23. - run:
  24. name: Start mocks
  25. command: ./integration_tests/step-5.start-mocks.sh
  26. - run:
  27. name: Run tests
  28. command: ./integration_tests/step-6.run-tests.sh --verbose
Add Comment
Please, Sign In to add comment