Skip to content
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
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
#!/usr/bin/make -f

install-dev-requirements:
pip install pipenv==2020.11.15
pip install -U pip
pip install pipenv

install-test-requirements:
pipenv install --dev
Expand Down
1 change: 0 additions & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ http-parser = ">=0.9.0"
pre-commit = "*"
pytest = ">4.6"
pytest-cov = "*"
mock = "*"
requests = "*"
redis = "*"
gevent = "*"
Expand Down
2 changes: 1 addition & 1 deletion mocket/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@

__all__ = ("async_mocketize", "mocketize", "Mocket", "MocketEntry", "Mocketizer")

__version__ = "3.10.5"
__version__ = "3.10.6"
3 changes: 1 addition & 2 deletions tests/main/test_http.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,11 @@
import socket
import tempfile
import time
from unittest import TestCase
from unittest import TestCase, mock
from urllib.error import HTTPError
from urllib.parse import urlencode
from urllib.request import urlopen

import mock
import pytest
import requests

Expand Down