1
0
forked from VimPlug/jedi

Revisit pytest config

- add testpaths setting
- tox: remove testpaths from posargs default
- s/py.test/pytest/
This commit is contained in:
Daniel Hahler
2018-06-30 19:14:13 +02:00
parent a79a1fbef5
commit a34ee5bb92
5 changed files with 13 additions and 11 deletions

View File

@@ -9,9 +9,9 @@ def assert_case_equal(case, actual, desired):
"""
Assert ``actual == desired`` with formatted message.
This is not needed for typical py.test use case, but as we need
This is not needed for typical pytest use case, but as we need
``--assert=plain`` (see ../pytest.ini) to workaround some issue
due to py.test magic, let's format the message by hand.
due to pytest magic, let's format the message by hand.
"""
assert actual == desired, """
Test %r failed.