- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
住手!我在检查枚举的相等性时遇到了奇怪的问题。在本地,我的测试通过了,但在特拉维斯上它们失败了。以下是 Travis 的测试失败示例:
_____________________________ test_extract_object ______________________________
def test_extract_object():
"""Test UmlCreator.extract_object()."""
creator = UmlCreator(".")
with pytest.raises(ValueError):
creator.extract_object(["no", "klass", "included"])
obj = creator.extract_object(
[
"public",
"static",
"class",
"StaticKlass",
":",
"ICanBeImplemented,",
"IComparable,",
"IEquatable<Klass>",
]
)
assert obj.__class__.__name__ == "UmlClass"
> assert obj.access is Access.PUBLIC
E assert Access("public") is Access("public")
E + where Access("public") = UmlClass(['StaticKlass', ':', 'ICanBeImplemented,', 'IComparable,', 'IEquatable<Klass>'], **{'nsp': None, 'access': Access("public"), 'attrs': [], 'modifiers': [Modifier("static")], 'repo_url': None}).access
E + and Access("public") = Access.PUBLIC
tests/test_creator.py:44: AssertionError
如果我将有问题的行更改为 assert obj.access.value == Access.PUBLIC.value
它也会传递给 Travis,但我很困惑为什么会在一个地方失败并传递另一个具有基本相同设置的方法,它当然也会影响非测试代码,这意味着我在代码中使用 foo is Enum.VAL
的任何地方,对这些方法的测试也会失败:
tests/test_creator.py:44: AssertionError
_________________________ test_uml_class_display_name __________________________
def test_uml_class_display_name():
"""Test UmlClass.display_name()."""
klass = UmlClass(["Classy"])
assert klass.display_name() == "Classy"
abstract_klass = UmlClass(["Classy"], modifiers=[Modifier.ABSTRACT])
> assert abstract_klass.is_abstract()
E assert False
$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 18.04.4 LTS
Release: 18.04
Codename: bionic
$ pip list
Package Version
------------------ --------
appdirs 1.4.3
astroid 2.3.3
attrs 19.3.0
bandit 1.6.2
black 19.10b0
Click 7.0
coverage 5.0.3
gitdb2 2.0.6
GitPython 3.0.7
importlib-metadata 1.5.0
isort 4.3.21
lazy-object-proxy 1.4.3
mccabe 0.6.1
more-itertools 8.2.0
packaging 20.1
pathspec 0.7.0
pbr 5.4.4
pip 20.0.2
pluggy 0.13.1
py 1.8.1
pylint 2.4.4
pyparsing 2.4.6
pytest 5.3.5
pytest-cov 2.8.1
PyYAML 5.3
regex 2020.1.8
rope 0.16.0
setuptools 45.1.0
six 1.14.0
smmap2 2.0.5
stevedore 1.32.0
toml 0.10.0
typed-ast 1.4.1
wcwidth 0.1.8
wheel 0.34.2
wrapt 1.11.2
zipp 2.2.0
$ pipenv run test
===== test session starts =====
platform linux -- Python 3.6.9, pytest-5.3.5, py-1.8.1, pluggy-0.13.1
rootdir: /mnt/c/Users/thy/source/repos/uml.cs, inifile: pytest.ini
plugins: cov-2.8.1
collected 41 items
$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 18.04.3 LTS
Release: 18.04
Codename: bionic
$ pip list
Package Version
------------------ ----------
appdirs 1.4.3
astroid 2.3.3
atomicwrites 1.3.0 !
attrs 19.3.0
bandit 1.6.2
black 19.10b0
certifi 2019.6.16 !
Click 7.0
coverage 5.0.3
gitdb2 2.0.6
GitPython 3.0.7
importlib-metadata 1.5.0
isort 4.3.21
lazy-object-proxy 1.4.3
mccabe 0.6.1
mock 3.0.5 !
more-itertools 8.2.0
nose 1.3.7 !
numpy 1.18.0 !
packaging 20.1
pathspec 0.7.0
pbr 5.4.4
pip 19.3.1
pipenv 2018.11.26
pluggy 0.13.1
py 1.8.1
pylint 2.4.4
pyparsing 2.4.6
pytest 5.3.5
pytest-cov 2.8.1
PyYAML 5.3
regex 2020.1.8
rope 0.16.0
setuptools 42.0.2
six 1.14.0
smmap2 2.0.5
stevedore 1.32.0
toml 0.10.0
typed-ast 1.4.1
virtualenv 16.6.1
virtualenv-clone 0.5.3
wcwidth 0.1.8
wheel 0.33.6
wrapt 1.11.2
zipp 2.2.0
python -m pytest
===== test session starts =====
platform linux -- Python 3.6.9, pytest-5.3.5, py-1.8.1, pluggy-0.13.1
rootdir: /home/travis/build/kthy/uml.cs, inifile: pytest.ini
plugins: cov-2.8.1
collected 41 items
为了便于比较,这里有一个差异表:
| Local (WSL) | Travis || ------------------ | ---------------------- || Ubuntu 18.04.4 LTS | Ubuntu 18.04.3 LTS || | atomicwrites-1.3.0 || | certifi-2019.6.16 || | mock-3.0.5 || | nose-1.3.7 || | numpy-1.18.0 || pip-20.0.2 | pip-19.3.1 || | pipenv-2018.11.26 || setuptools-45.1.0 | setuptools-42.0.2 || | virtualenv-16.6.1 || | virtualenv-clone-0.5.3 || wheel-0.34.2 | wheel-0.33.6 |
可以看到来自 Travis 的完整构建日志,例如here .
最佳答案
所以,as pointed out by Ethan问题是我的进口。不管出于什么原因,我导入了Enum
s,例如
try:
from features import Access
except (ImportError, ModuleNotFoundError):
from umldotcs.features import Access
- 我不记得为什么,但可能是因为我之前在导入时遇到过一些问题。 cargo 邪教编程再次来袭! 😉 在本地运行 pytest
使用了第二个导入,而 Travis 由于某种原因选择了第一个,触发 Issue30545这是用户错误,而不是 python bug。确保以相同的方式导入所有 Enum
解决了问题。
关于python - pytest: `foo is Enum.FOO` 在本地测试为 True,在 travis-ci 上测试为 False,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60211486/
public class Foo : IFoo ... 和有什么区别 IFoo foo = new Foo(); 和 Foo foo = new Foo(); 最佳答案 区别仅在于变量的声明类型。每当
class Foo { public: explicit Foo() {} explicit Foo(Foo&) {} }; Foo d = Foo(); error: no matc
是 foo as? Foo完全等同于 foo as Foo? ? 如果是,那为什么两者都有? 如果不是,那么有什么区别? 最佳答案 as?是 safe cast operator . 通常,如果您尝试
关闭。这个问题是opinion-based .它目前不接受答案。 想要改进这个问题? 更新问题,以便 editing this post 可以用事实和引用来回答它. 关闭 9 年前。 Improve
这个问题在这里已经有了答案: Why is there an injected class name? (1 个回答) 关闭5年前。 一位同事不小心写了这样的代码: struct foo { fo
我遇到了这些关键字::foo、::foo、::bar/foo 和 :bar/foo 您能举例说明差异吗? 最佳答案 :foo 是一个非完全限定的关键字。它没有关联的命名空间。 (name :foo)
有人问我如何简化这个 lambda (Foo foo) -> foo.getName() 还有更好的写法吗? 最佳答案 Foo::getName。 假设getName是一个实例方法,其签名中的参数列表
编写此规则集的 CSS 组合器或简写是什么? foo bar, foo biz, foo gaz > boo, foo tar { ... } 我很确定我在 MDN 的某处读到过有一个。是不是: f
我有一个用这个字符串填充的输入文本 "foo foo"但插入后字符串看起来像这样 "foo foo" .我该如何解决?我想以第一种格式显示字符串! 最佳答案 你可能有这样的事情: " /> 更改 va
假设我有一个不可复制类Foo,它的构造函数之一恰好接收到对 Foo 的引用。 class Foo { public: Foo(Foo& parent) {...} private: v
class Artist @@song_count = [] attr_accessor :name, :songs def initialize(name) @name = name
请解释为什么这些 Perl 函数的调用方式在函数定义之上决定了它们是否运行。 print "Why does this bare call to foo not run?\n"; foo; print
文件名分为三种类型 首先( Root 于某种“当前工作目录”之下) ../foo ./foo bar/foo # really in this group? 和( Root 于绝对路径,独立于 CWD
我想自动连接 foo: @Autowired Foo foo 但我无法修改类 Foo 并将其标记为 @Component。 Autowiring foo 最干净的方法是什么? 顺便说一句,如果您需要使
我一直在使用 Python 的 ElementTree 创建 XML 文档,到目前为止一切顺利。然而我现在面临的问题是,由于项目要求,我需要生成一个 XML 文档,其中包含带有开始和结束标签的元素以及
class Foo { public: Foo(){} private: Foo(const Foo &); }; Foo f(); Foo f1 = Foo(); 我发现当我将 Fo
我有一个 jquery 对话框,上面有一个按钮(我的按钮,不是对话框按钮之一)。 设置对话框后,我有以下代码: $('#bar').click(foo('baz')); 当我加载页面并显示对话框时,f
我遇到了以下变量的情况: var foo: Foo | Foo | Foo; 动态生成(使用 keyof 和 stuff),这在代码的那个点是完全有意的。但是,我需要调用像这样定义的对象内部的方法:
clang 3.5.0 和 gcc 4.9.1 从代码生成的可执行文件 #include struct Foo { Foo() { std::cout << "Foo()" << std::e
对于声明为 Foo& foo = ...; 的 foo,lambdas 的按值捕获和按引用捕获语义之间有什么区别吗? 最佳答案 我认为你已经陷入了一个常见的误解......引用是对真实对象的别名。初始
我是一名优秀的程序员,十分优秀!