Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Make the mock dependency optional #320

Merged
merged 1 commit into from
Mar 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

coverage
flake8
mock
mock; python_version < '3.3'
pytest
tox
tox
5 changes: 4 additions & 1 deletion tests/nodeenv_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,10 @@
import sys
import sysconfig

import mock
try:
from unittest import mock
except ImportError:
import mock
import pytest

import nodeenv
Expand Down
5 changes: 4 additions & 1 deletion tests/test_install_activate.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
import sys
import os

import mock
try:
from unittest import mock
except ImportError:
import mock
import pytest

import nodeenv
Expand Down