Skip to content

Commit

Permalink
Fixed early test failure on new pytest version. (#188)
Browse files Browse the repository at this point in the history
* Fixed early test failure on new pytest version.

See pytest-dev/pytest#607 for details.

* Fixed pytest skips on python 2.6.
  • Loading branch information
apollo13 authored and prologic committed Jan 15, 2017
1 parent d6aeb45 commit cd17094
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 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
2 changes: 1 addition & 1 deletion tests/web/test_servers.py
Expand Up @@ -20,7 +20,7 @@


if pytest.PYVER < (2, 7):
pytest.skip("This test requires Python=>2.7")
pytest.mark.skip("This test requires Python=>2.7")


CERTFILE = path.join(path.dirname(__file__), "cert.pem")
Expand Down

0 comments on commit cd17094

Please sign in to comment.