Skip to content
This repository has been archived by the owner on Jul 23, 2020. It is now read-only.

Commit

Permalink
Use a brute-force mock to prevent test failures on virtualenv.install…
Browse files Browse the repository at this point in the history
…_wheel
  • Loading branch information
jaraco committed Sep 21, 2018
1 parent ccbe9f9 commit 8b59f63
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions tests/conftest.py
Original file line number Diff line number Diff line change
@@ -1 +1,8 @@
import pytest
import virtualenv
from tox._pytestplugin import * # noqa


@pytest.fixture(autouse=True)
def bypass_virtualenv_install_wheel(monkeypatch):
monkeypatch.setattr(virtualenv, 'install_wheel', lambda **kwargs: None)

0 comments on commit 8b59f63

Please sign in to comment.