File tree 2 files changed +6
-0
lines changed
pytest-profiling/tests/integration 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change 3
3
4
4
### 1.6.0 (Unreleased)
5
5
* pytest-server-fixtures: added previously removed TestServerV2.kill() function
6
+ * pytest-profiling: pin more-itertools==5.0.0 in integration tests, as that's a PY3 only release
6
7
7
8
### 1.5.1 (2019-01-24)
8
9
* pytest-verbose-parametrize: fixed unicode parameters when using ` @pytest.mark.parametrize `
Original file line number Diff line number Diff line change @@ -11,6 +11,11 @@ def virtualenv():
11
11
with VirtualEnv () as venv :
12
12
test_dir = resource_filename ('pytest_profiling' ,
13
13
'tests/integration/profile' )
14
+
15
+ # HACK: pin more-itertools to 5.0.0 to keep tests working in PY27 as
16
+ # as that's a py3 only release
17
+ venv .install_package ('more-itertools==5.0.0' )
18
+
14
19
venv .install_package ('pytest-cov' )
15
20
venv .install_package ('pytest-profiling' )
16
21
copy_tree (test_dir , venv .workspace )
You can’t perform that action at this time.
0 commit comments