Codeigniter PHPUnit测试和git-ftp失败

时间:2018-07-17 10:13:00

标签: git phpunit bitbucket bitbucket-pipelines git-ftp

我第一次尝试使用Bitbucket管道,并且我安装了带有基本测试文件夹的空白版本CodeIgniter 3.1.9。我正在尝试让管道先运行基本的PHPUnit测试,然后一旦成功执行git ftp上传。我的git ftp上传工作正常,但是我被PHPUnit测试困住了。有人可以指导我我做错了什么吗。

pipelines:
    branches:
      master:
      - step:
          name: PHPUnit test
          image: php:7-fpm
          script:
            - phpunit -c tests/phpunit.xml
      - step:
          name: Upload Server
          image: samueldebruyn/debian-git
          script:
            - apt-get update
            - apt-get -qq install git-ftp
            - git ftp push --user $FTP_USERNAME --passwd $FTP_PASSWORD ftp://((ip address))/simpleftp/test_folder_1

我刚收到此错误

+ phpunit -c tests/phpunit.xml
bash: phpunit: command not found

0 个答案:

没有答案