Skip some tests when frozen.

This commit is contained in:
Florian Bruhin 2015-08-26 20:29:56 +02:00
parent cb0e92b4e8
commit 3e255eae64
2 changed files with 2 additions and 1 deletions

View File

@ -32,6 +32,7 @@ TEXT = (r"At least Python 3.4 is required to run qutebrowser, but "
r"\d+\.\d+\.\d+ is installed!\n")
@pytest.mark.not_frozen
def test_python2():
"""Run checkpyver with python 2."""
try:

View File

@ -26,7 +26,7 @@ from scripts.dev import check_coverage
pytest_plugins = 'pytester'
pytestmark = pytest.mark.linux
pytestmark = [pytest.mark.linux, pytest.mark.not_frozen]
class CovtestHelper: