- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在尝试通过 travis-ci 使用 coveralls.io 设置一个小型 python 库。
库的当前结构是:
libconfig
├── .coverage
├── .coveragerc
├── .coveralls.yml
├── LICENSE
├── README.md
├── REQUIREMENTS
├── .gitignore
├── .travis.yml
├── libconfig
│ ├── __init__.py
│ ├── config.py
│ ├── evaluator.py
│ ├── tests
│ │ └── test_libconfig.py
│ └── util.py
├── package.json
├── setup.cfg
└── setup.py
我的 .coveragerc
看起来像这样:
[run]
branch = False
omit = */tests/*
[report]
# Regexes for lines to exclude from consideration
exclude_lines =
# Have to re-enable the standard pragma
pragma: no cover
# Don't complain about missing debug-only code:
def __repr__
if self\.debug
# Don't complain if tests don't hit defensive assertion code:
raise AssertionError
raise NotImplementedError
raise IOError
raise ValueError
# Don't complain if non-runnable code isn't run:
if 0:
if __name__ == .__main__.:
show_missing = True
ignore_errors = True
[html]
directory = coverage_html_report
当我在本地运行 pytests 时,它确实提供了覆盖范围:
pytest --cov-config .coveragerc --cov=libconfig libconfig/tests
=========================== test session starts ============================
platform darwin -- Python 2.7.12, pytest-3.4.1, py-1.5.2, pluggy-0.6.0
rootdir: /Users/bonet/SandBox/libconfig, inifile:
plugins: cov-2.5.1
collected 5 items
libconfig/tests/test_libconfig.py ..... [100%]
---------- coverage: platform darwin, python 2.7.12-final-0 ----------
Name Stmts Miss Cover Missing
------------------------------------------------------
libconfig/__init__.py 1 0 100%
libconfig/config.py 116 0 100%
libconfig/evaluator.py 20 0 100%
libconfig/util.py 34 0 100%
------------------------------------------------------
TOTAL 171 0 100%
========================= 5 passed in 1.56 seconds =========================
然后,我有我的 .travis.yml
配置文件:
language: python
python:
- '2.7'
- '3.5'
- '3.6'
install:
- pip install -r REQUIREMENTS
- pip install coverage coveralls
- pip install python-coveralls
- pip install pytest pytest-cov
script:
- python setup.py install
- pytest --cov-config .coveragerc --cov=libconfig libconfig/tests
- coverage report --show-missing
after_success:
- coveralls
但是,当它在 travis-ci 中运行时,它不会给我任何覆盖范围:
The command "pytest --cov-config .coveragerc --cov=libconfig libconfig/tests" exited with 0.
$ coverage report --show-missing
Name Stmts Miss Cover Missing
------------------------------------------------------
libconfig/__init__.py 1 1 0% 8
libconfig/config.py 116 116 0% 13-404
libconfig/evaluator.py 20 20 0% 13-47
libconfig/util.py 34 34 0% 9-68
------------------------------------------------------
TOTAL 171 171 0%
The command "coverage report --show-missing" exited with 0.
我一直在四处寻找,但我还没有找到可以解决这个问题的解决方案,我们将不胜感激。
最佳答案
所以,这花了一段时间,但我确实找到了解决方案,可以在 libconfig 中完全看到发起这个问题的 repo 协议(protocol)。
基本上,我现在使用配置文件 (tox.ini
) 在 tox 中运行命令,例如:
[tox]
envlist = py27, py35, py36
skip_missing_interpreters = true
[testenv]
changedir = libconfig/tests
commands =
python -c "import libconfig; print(libconfig.__version__)"
coverage erase
pytest --basetemp={envtmpdir} --cov-config {toxinidir}/.coveragerc --cov-report xml:/tmp/cov-single.xml --cov=libconfig
coverage report --show-missing
deps =
-rREQUIREMENTS
pytest
pytest-cov
coverage
coveralls
python-coveralls
这确保创建 XML 覆盖率报告和一个 .travis.yml
看起来像:
language: python
sudo: false
branches:
only:
- master
- "/^v\\d+\\.\\d+(\\.\\d+)?(-\\S*)?$/"
matrix:
include:
- python: 2.7
env: TOXENV=py27
os: linux
- python: 3.5
env: TOXENV=py35
os: linux
- python: 3.6
env: TOXENV=py36
os: linux
after_success:
- pwd
- coveralls --data_file libconfig/tests/.coverage
- python-codacy-coverage -r /tmp/cov-single.xml
- bash <(curl -s https://codecov.io/bash) -Z -c -f /tmp/cov-single.xml
- python: 3.7-dev
env: TOXENV=py37
os: linux
- language: generic
env: TOXENV=py27
os: osx
- language: generic
env: TOXENV=py36
os: osx
before_install:
- bash ./ci/travis_before_install.sh
install:
- bash ./ci/travis_install.sh
script:
- tox
正确地将报告上传到服务器。
关于travis 中的 python-coveralls 找不到覆盖范围,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49659306/
我收到了这样的警告日志,我的构建失败了。 WARNING: We were unable to find a .travis.yml file. This may not be what you wa
我真的很想使用 Travis 而无需将 .travis.yml 存储在我的存储库的根文件夹中。知道它是否可以移动到不同的文件夹中、存储在另一个存储库中或在 Travis 网站上指定吗? 最佳答案 来自
我有 .travis.yml 文件在我的 repo 的根目录中,但 Travis-Ci 不断给我消息: Could not find .travis.yml, using standard confi
每当我推送一个新的提交时,Travis CI 都会使我的构建失败,并在每个日志的顶部显示这条消息: WARNING: We were unable to find a .travis.yml file
我正在尝试登录自己托管的 Travis Enterprise,但通常是 travis login和 travis login --pro正在尝试登录到通常的 Travis SAAS 环境 最佳答案 鉴
我希望在我的 Travis CI 存储库设置中声明环境变量,并在我的 .travis.yml 文件中使用它们来部署应用程序并在 Slack 中发布构建通知。 我在 Travis CI 存储库设置中设置
使用 .travis.yml 时,是否有一个环境变量包含 Travis-CI 中当前构建目录的名称?查看文档 here我没有看到。 最佳答案 您可能需要 $TRAVIS_BUILD_DIR,这是我们在
作为我定制的 travis 构建的一部分,我想使用 Travis command-line client在 after_success 脚本中。在这个特定的 repo 中每次成功构建之后,我需要它来触
我有以下 .travis.yml : sudo: required language: node_js branches: only: - master before_install:
我的本地存储库中有一个有效的 .travis.yml。让我们以 travis 帮助中的示例为例:https://github.com/travis-ci/build-stages-demo/blo
所以,我在 GitHub 上设置为另一个用户拥有的项目的合作者 (我有完全推送权等)。我可以设置 Travis 吗 这个项目?我在“存储库”列表中找不到存储库 特拉维斯。 最佳答案 只有存储库管理员可
每次推送到存储库 Y 时,有没有办法触发存储库 X 的 Travis CI 构建?具体来说,我希望每次推送到 http://github.com/tensorflow/tensorflow 时都开始构
我想针对许多浏览器测试我的 .js 框架的不同版本 我希望写一些类似的东西: language: node_js node_js: - 0.11 env: matrix: - BUILD=
我有一个在 Linux 和 OSX 上运行的 travis 作业,我希望能够使用它为每个平台部署不同的构建工件到 github 版本。我的 .travis.yml文件目前看起来像这样: languag
我在 Travis 文件中有以下部署脚本并面临多行命令问题。我尝试了很多组合,但找不到合适的解决方案。如果我将它提取到文件并从脚本属性调用它,它可以正常工作,但我们的目标是将所有命令作为多行命令放在脚
我在 Travis 文件中有以下部署脚本并面临多行命令问题。我尝试了很多组合,但找不到合适的解决方案。如果我将它提取到文件并从脚本属性调用它,它可以正常工作,但我们的目标是将所有命令作为多行命令放在脚
我正在尝试使用以下配置让 Travis 上传到 PyPI deploy: provider: pypi user: P403n1x87 password: $PYPI_PASSWORD
这是有问题的公共(public)存储库:https://travis-ci.org/agerwick/raw-sinatra-boilerplate 我按照此处的建议集成了 codeclimate 的
在那里,在我的项目中使用travis-ci时遇到了“分段错误”错误:IPython-Dashboard msg没有错误,并且在本地运行良好,我感到有些困惑。任何人都可以提出解决问题的任何想法,谢谢。
我有一个带有子目录 ( test ) 的 gem,其中包含用于测试项目的 Rails 3.1.1 应用程序。我正在尝试设置 Travis-CI 以进行持续集成,但是我不知道如何设置我的 .travis
我是一名优秀的程序员,十分优秀!