other.yml 1.1 KB

12345678910111213141516171819202122232425
  1. "minitest:integration:other":
  2. extends:
  3. - .template_integration
  4. script:
  5. - echo -e "\\e[0Ksection_start:`date +%s`:zammad_db_unseeded[collapsed=true]\\r\\e[0Kbundle exec rake zammad:db:unseeded"
  6. - bundle exec rake zammad:db:unseeded
  7. - echo -e "\\e[0Ksection_end:`date +%s`:zammad_db_unseeded\\r\\e[0K"
  8. - echo "email_helper_deliver tests..."
  9. - bundle exec rails test test/integration/email_helper_test.rb
  10. - bundle exec rails test test/integration/email_deliver_test.rb
  11. - bundle exec rails test test/integration/email_keep_on_server_test.rb
  12. - bundle exec rails test test/integration/email_postmaster_to_sender.rb
  13. - echo "Clearbit test..."
  14. - bundle exec rails test test/integration/clearbit_test.rb
  15. - echo "Geo tests..."
  16. - bundle exec rails test test/integration/geo_location_test.rb
  17. - echo "Slack test..."
  18. - bundle exec rails test test/integration/slack_test.rb
  19. - echo "UserAgent tests..."
  20. - bundle exec rails test test/integration/user_agent_test.rb
  21. - export ZAMMAD_PROXY_TEST=true
  22. - bundle exec rails test test/integration/user_agent_test.rb
  23. allow_failure: true