/
githubmirror
/
squirrel
Обзор
Документация
Войти
/
githubmirror
/
squirrel
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
.travis.yml
30 строк
768 B
Lann Martin
Move integration tests to their own module
19 ноя 2019, 17:37
19 ноя 2019, 17:37
eb15de2
Код
Авторство
О чём код?
language: go go: - 1.11.x - 1.12.x - 1.13.x services: - mysql - postgresql # Setting sudo access to false will let Travis CI use containers rather than # VMs to run the tests. For more details see: # - http://docs.travis-ci.com/user/workers/container-based-infrastructure/ # - http://docs.travis-ci.com/user/workers/standard-infrastructure/ sudo: false before_script: - mysql -e 'CREATE DATABASE squirrel;' - psql -c 'CREATE DATABASE squirrel;' -U postgres script: - go test - cd integration - go test -args -driver sqlite3 - go test -args -driver mysql -dataSource travis@/squirrel - go test -args -driver postgres -dataSource 'postgres://postgres@localhost/squirrel?sslmode=disable' notifications: irc: "irc.freenode.net#masterminds"