[Pytest-commit] Issue #551: looponfail is slow to react (hpk42/pytest)

2014-07-29 Thread Dustin Farris
New issue 551: looponfail is slow to react https://bitbucket.org/hpk42/pytest/issue/551/looponfail-is-slow-to-react Dustin Farris: On changes, sometimes looponfail reacts near instantly, but more often than not, it can take up to 15 seconds before looponfail recognizes a file change (on a very

[Pytest-commit] Issue #550: Strip docstring output with `--fixtures` (hpk42/pytest)

2014-07-29 Thread Daniel Hahler
New issue 550: Strip docstring output with `--fixtures` https://bitbucket.org/hpk42/pytest/issue/550/strip-docstring-output-with-fixtures Daniel Hahler: I have noticed that `py.test --fixtures` uses the docstring as-is. I think it would be nicer to trim any leading and/or trailing whitespace (u

[Pytest-commit] commit/pytest: hpk42: reorder talks, more talks from pelme and others

2014-07-29 Thread commits-noreply
1 new commit in pytest: https://bitbucket.org/hpk42/pytest/commits/040c46f25733/ Changeset: 040c46f25733 User:hpk42 Date:2014-07-29 15:06:37 Summary: reorder talks, more talks from pelme and others Affected #: 1 file diff -r 92dba42a205bd4ffb93e024ba87181b67668 -r 040c

[Pytest-commit] commit/pytest: hpk42: add flub and pelme talks at EuroPython2014, remove one past training note

2014-07-29 Thread commits-noreply
1 new commit in pytest: https://bitbucket.org/hpk42/pytest/commits/92dba42a205b/ Changeset: 92dba42a205b User:hpk42 Date:2014-07-29 15:00:45 Summary: add flub and pelme talks at EuroPython2014, remove one past training note Affected #: 2 files diff -r cb8998b708a6ee9645a7d

[Pytest-commit] commit/tox: 9 new changesets

2014-07-29 Thread commits-noreply
9 new commits in tox: https://bitbucket.org/hpk42/tox/commits/de361f0a345c/ Changeset: de361f0a345c User:suor Date:2014-06-20 12:10:04 Summary: First stab at multidimensional config Affected #: 1 file diff -r cefc0fd28dda72ac76a9170b4c586e0eb3f1d124 -r de361f0a345ce1843425

[Pytest-commit] Issue #549: Provide option for message & diff. (hpk42/pytest)

2014-07-29 Thread Sarah Bird
New issue 549: Provide option for message & diff. https://bitbucket.org/hpk42/pytest/issue/549/provide-option-for-message-diff Sarah Bird: Currently, if I have a test: ``` #!python def test_string(): assert 'my silly string' == 'my not so silly string' ``` Then I get the fail message: ```

[Pytest-commit] commit/pytest: 3 new changesets

2014-07-29 Thread commits-noreply
3 new commits in pytest: https://bitbucket.org/hpk42/pytest/commits/977c9b0aadb4/ Changeset: 977c9b0aadb4 Branch: cx_freeze-docs User:nicoddemus Date:2014-07-29 03:40:23 Summary: Adding blurb about using pytest runner and cx_freeze Affected #: 1 file diff -r 853ffb854a

[Pytest-commit] commit/pytest: hpk42: Close branch cx_freeze-docs

2014-07-29 Thread commits-noreply
1 new commit in pytest: https://bitbucket.org/hpk42/pytest/commits/754f2fce9197/ Changeset: 754f2fce9197 Branch: cx_freeze-docs User:hpk42 Date:2014-07-29 12:43:04 Summary: Close branch cx_freeze-docs Affected #: 0 files Repository URL: https://bitbucket.org/hpk42/pyte

[Pytest-commit] commit/pytest: hpk42: Merged in nicoddemus/pytest/cx_freeze-docs (pull request #188)

2014-07-29 Thread commits-noreply
1 new commit in pytest: https://bitbucket.org/hpk42/pytest/commits/cb8998b708a6/ Changeset: cb8998b708a6 User:hpk42 Date:2014-07-29 12:43:04 Summary: Merged in nicoddemus/pytest/cx_freeze-docs (pull request #188) Documentation example on how to integrate pytest and cx_freeze

[Pytest-commit] Issue #548: isinstance check in warn() is inconsistent on py2/py3 (hpk42/pytest)

2014-07-29 Thread Andreas Pelme
New issue 548: isinstance check in warn() is inconsistent on py2/py3 https://bitbucket.org/hpk42/pytest/issue/548/isinstance-check-in-warn-is-inconsistent Andreas Pelme: There is an assertion that reads ``` assert isinstance(code, str) ``` in `warn()` in _pytest/main.py. I guess the purpose he