Use python standard library mock
Markus Gerstel
2 years ago
0 | 0 |
bump2version==1.0.0
|
1 | 1 |
coverage==5.3
|
2 | 2 |
flake8==3.8.3
|
3 | |
mock==3.0.5
|
4 | 3 |
pip==20.2.3
|
5 | 4 |
pytest==6.1.0
|
6 | 5 |
Sphinx==3.2.1
|
12 | 12 |
|
13 | 13 |
setup_requirements = []
|
14 | 14 |
|
15 | |
test_requirements = ["mock", "pytest"]
|
|
15 |
test_requirements = ["pytest"]
|
16 | 16 |
|
17 | 17 |
setup(
|
18 | 18 |
author="Markus Gerstel",
|
0 | 0 |
import copy
|
1 | |
import mock
|
|
1 |
from unittest import mock
|
2 | 2 |
import os
|
3 | 3 |
import pathlib
|
4 | 4 |
import procrunner
|