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
4 changes: 0 additions & 4 deletions .virtualenv.dev-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,6 @@ pytest
pytest-cov
pytest-xdist

# Rolling backport of unittest.mock for all Pythons
mock

# Version-bump your software with a single command!
bumpversion

Expand All @@ -35,4 +32,3 @@ twine

# static type checking
mypy
types-mock
2 changes: 1 addition & 1 deletion kiwi_stackbuild_plugin/tasks/system_stackbuild.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
import os
import sys
import logging
from mock import patch
from unittest.mock import patch
from docopt import docopt
from typing import (
Dict, List
Expand Down
1 change: 0 additions & 1 deletion package/python-kiwi_stackbuild_plugin-spec-template
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,6 @@ image root directory
Summary: KIWI - Stack Build Plugin
Group: Development/Languages/Python
Requires: python%{python3_pkgversion}-docopt
Requires: python%{python3_pkgversion}-mock
Requires: python%{python3_pkgversion}-kiwi >= 9.21.21
Requires: python%{python3_pkgversion}-setuptools

Expand Down
2 changes: 1 addition & 1 deletion test/unit/tasks/system_stackbuild_test.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import sys
from pytest import raises
from mock import (
from unittest.mock import (
Mock, patch, call
)

Expand Down
2 changes: 1 addition & 1 deletion test/unit/tasks/system_stash_test.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import sys
from pytest import raises
from mock import (
from unittest.mock import (
Mock, patch
)
from tempfile import NamedTemporaryFile
Expand Down
Loading