gh页输出中不包括覆盖范围

时间:2018-06-21 04:53:52

标签: typescript travis-ci github-pages istanbul nyc

尝试使用打字稿和纽约摩卡咖啡测试覆盖率setup a project。最终目标是能够在以下位置查看伊斯坦布尔测试覆盖率报告:

https://oleersoy.github.io/tsmochanyc/coverage/index.html

.travis.yml文件如下所示:

    language : node_js
    node_js :
    - stable
    install:
    - npm install
    script:
    - npm test
    deploy:
    provider: pages
    skip_cleanup: true
    github_token: $GITHUB_TOKEN # Set in travis-ci.org dashboard
    on:
        branch: master
    before_deploy:
    - npm run test    
    - sed -i '/.nyc_output/d' .gitignore
    - sed -i '/coverage/d' .gitignore    

并且该构建在travis上运行并传递,但是coverage URL仍未呈现。有什么想法吗?

0 个答案:

没有答案