pytest-subprocess 1.4.2__tar.gz → 1.5.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {pytest-subprocess-1.4.2 → pytest_subprocess-1.5.1}/HISTORY.rst +19 -0
- {pytest-subprocess-1.4.2 → pytest_subprocess-1.5.1}/LICENSE +0 -0
- {pytest-subprocess-1.4.2 → pytest_subprocess-1.5.1}/MANIFEST.in +0 -0
- {pytest-subprocess-1.4.2/pytest_subprocess.egg-info → pytest_subprocess-1.5.1}/PKG-INFO +713 -666
- {pytest-subprocess-1.4.2 → pytest_subprocess-1.5.1}/README.rst +12 -0
- {pytest-subprocess-1.4.2 → pytest_subprocess-1.5.1}/pytest_subprocess/__init__.py +0 -0
- {pytest-subprocess-1.4.2 → pytest_subprocess-1.5.1}/pytest_subprocess/asyncio_subprocess.py +0 -0
- {pytest-subprocess-1.4.2 → pytest_subprocess-1.5.1}/pytest_subprocess/exceptions.py +0 -0
- {pytest-subprocess-1.4.2 → pytest_subprocess-1.5.1}/pytest_subprocess/fake_popen.py +19 -3
- {pytest-subprocess-1.4.2 → pytest_subprocess-1.5.1}/pytest_subprocess/fake_process.py +4 -1
- {pytest-subprocess-1.4.2 → pytest_subprocess-1.5.1}/pytest_subprocess/fixtures.py +0 -0
- {pytest-subprocess-1.4.2 → pytest_subprocess-1.5.1}/pytest_subprocess/process_dispatcher.py +5 -3
- {pytest-subprocess-1.4.2 → pytest_subprocess-1.5.1}/pytest_subprocess/process_recorder.py +0 -0
- {pytest-subprocess-1.4.2 → pytest_subprocess-1.5.1}/pytest_subprocess/py.typed +0 -0
- {pytest-subprocess-1.4.2 → pytest_subprocess-1.5.1}/pytest_subprocess/types.py +3 -1
- {pytest-subprocess-1.4.2 → pytest_subprocess-1.5.1}/pytest_subprocess/utils.py +57 -21
- {pytest-subprocess-1.4.2 → pytest_subprocess-1.5.1/pytest_subprocess.egg-info}/PKG-INFO +713 -666
- {pytest-subprocess-1.4.2 → pytest_subprocess-1.5.1}/pytest_subprocess.egg-info/SOURCES.txt +9 -1
- {pytest-subprocess-1.4.2 → pytest_subprocess-1.5.1}/pytest_subprocess.egg-info/dependency_links.txt +0 -0
- pytest_subprocess-1.5.1/pytest_subprocess.egg-info/entry_points.txt +2 -0
- {pytest-subprocess-1.4.2 → pytest_subprocess-1.5.1}/pytest_subprocess.egg-info/requires.txt +1 -0
- {pytest-subprocess-1.4.2 → pytest_subprocess-1.5.1}/pytest_subprocess.egg-info/top_level.txt +1 -0
- {pytest-subprocess-1.4.2 → pytest_subprocess-1.5.1}/setup.cfg +18 -18
- {pytest-subprocess-1.4.2 → pytest_subprocess-1.5.1}/setup.py +4 -3
- pytest_subprocess-1.5.1/tests/__init__.py +0 -0
- pytest_subprocess-1.5.1/tests/conftest.py +13 -0
- pytest_subprocess-1.5.1/tests/example_script.py +18 -0
- pytest_subprocess-1.5.1/tests/test_asyncio.py +375 -0
- pytest_subprocess-1.5.1/tests/test_examples.py +61 -0
- pytest_subprocess-1.5.1/tests/test_subprocess.py +1234 -0
- pytest_subprocess-1.5.1/tests/test_typing.py +9 -0
- pytest_subprocess-1.5.1/tests/test_utils.py +182 -0
- pytest-subprocess-1.4.2/pytest_subprocess.egg-info/entry_points.txt +0 -2
|
@@ -1,6 +1,25 @@
|
|
|
1
1
|
History
|
|
2
2
|
=======
|
|
3
3
|
|
|
4
|
+
1.5.1 (2024-07-23)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
Other changes
|
|
8
|
+
~~~~~~~~~~~~~
|
|
9
|
+
* `#127 <https://github.com/aklajnert/pytest-subprocess/pull/127>`_: Add `tests` directory to sdist.
|
|
10
|
+
|
|
11
|
+
1.5.0 (2023-01-28)
|
|
12
|
+
------------------
|
|
13
|
+
|
|
14
|
+
Features
|
|
15
|
+
~~~~~~~~
|
|
16
|
+
* `#109 <https://github.com/aklajnert/pytest-subprocess/pull/109>`_: Match also `os.PathLike`.
|
|
17
|
+
* `#105 <https://github.com/aklajnert/pytest-subprocess/pull/105>`_: Add program matcher.
|
|
18
|
+
|
|
19
|
+
Other changes
|
|
20
|
+
~~~~~~~~~~~~~
|
|
21
|
+
* `#110 <https://github.com/aklajnert/pytest-subprocess/pull/110>`_: Produce TypeError on Win Py<3.8 for Path args.
|
|
22
|
+
|
|
4
23
|
1.4.2 (2022-10-02)
|
|
5
24
|
------------------
|
|
6
25
|
|
|
File without changes
|
|
File without changes
|