Skip to content

Commit

Permalink
Fixed early test failure on new pytest version.
Browse files Browse the repository at this point in the history
See pytest-dev/pytest#607 for details.
  • Loading branch information
apollo13 committed Jan 15, 2017
1 parent d6aeb45 commit 070c19f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Expand Up @@ -34,8 +34,8 @@ matrix:
before_install:
- ./.travis/install.sh
install:
- pip install -r requirements-test.txt
- pip install -e .
- pip install -Ur requirements-test.txt
- pip install -Ue .
script: python setup.py test
after_success:
- coveralls
Expand Down
2 changes: 1 addition & 1 deletion tests/core/test_coroutine.py
Expand Up @@ -4,7 +4,7 @@


import pytest
pytest.skip("XXX: This test fails intermittently")
pytest.mark.skip("XXX: This test fails intermittently")

from circuits import Event, Component

Expand Down

0 comments on commit 070c19f

Please sign in to comment.