gpt4 book ai didi

mysql - 在 Travis 中运行 MySQL 脚本

转载 作者:行者123 更新时间:2023-11-28 23:23:13 25 4
gpt4 key购买 nike

因此,我们有一个空的数据库脚本,我们需要在进行单元测试之前在 travis 上运行它。它设置数据库模式并填写一些字段。我们应该怎么做?到目前为止,我们已经正确创建了 MySQL,只需要运行脚本。

最佳答案

这对我有用,我配置了我的文件 .travis.yml


language: php
php:
- '5.5'
- '5.6'
service:
- mysql
install:
- composer install
before_install:
- mysql -e 'CREATE DATABASE IF NOT EXISTS baladay;'
- mysql -u root --default-character-set=utf8 baladay < scripts/bd.sql
script:
- vendor/bin/phpunit

关于mysql - 在 Travis 中运行 MySQL 脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40555901/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com