Skip to content

Commit

Permalink
Fix build by restricting to pytest-pylint<0.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sambrightman authored and shalupov committed Feb 15, 2019
1 parent 1b2d007 commit f28716f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integration-tests/pytest_integration_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def test_pytest_pep8(venv):
assert ms[2].params["details"].find("E302 expected 2 blank lines, found 1") > 0

def test_pytest_pylint(venv):
venv_with_pylint = virtual_environments.prepare_virtualenv(venv.packages + ("pytest-pylint",))
venv_with_pylint = virtual_environments.prepare_virtualenv(venv.packages + ("pytest-pylint<0.14.0",))

output = run(venv_with_pylint, 'pylint_test.py', options="--pylint")
pylint_test_name = "tests.guinea-pigs.pytest.pylint_test.Pylint"
Expand Down

0 comments on commit f28716f

Please sign in to comment.