Home
last modified time | relevance | path

Searched refs:xprocess (Results 1 – 25 of 50) sorted by relevance

12

/dports/devel/py-pytest-xprocess/pytest-xprocess-0.17.1/tests/
H A Dtest_process_termination.py7 from xprocess import ProcessStarter
18 xprocess.ensure(proc_name, Starter)
19 info = xprocess.getinfo(proc_name)
33 xprocess.ensure(proc_name, Starter)
34 info = xprocess.getinfo(proc_name)
49 xprocess.ensure(proc_name, Starter)
50 info = xprocess.getinfo(proc_name)
73 xprocess.ensure(proc_name, Starter)
74 info = xprocess.getinfo(proc_name)
89 xprocess.ensure(proc_name, Starter)
[all …]
H A Dtest_process_initialization.py7 from xprocess import ProcessStarter
23 def test_servers_start(port, proc_name, xprocess): argument
30 xprocess.ensure(proc_name, Starter)
31 info = xprocess.getinfo(proc_name)
38 def test_ensure_not_restart(port, proc_name, xprocess): argument
43 proc_id = xprocess.ensure(proc_name, Starter)
44 info = xprocess.getinfo(proc_name)
45 assert xprocess.ensure(proc_name, Starter) == proc_id
66 xprocess.ensure(proc_name, Starter)
67 info = xprocess.getinfo(proc_name)
[all …]
H A Dtest_callback.py7 from xprocess import ProcessStarter
13 def test_callback_success(xprocess, port, proc_name): argument
25 xprocess.ensure(proc_name, Starter)
26 info = xprocess.getinfo(proc_name)
32 def test_callback_fail(xprocess, port, proc_name): argument
46 xprocess.ensure(proc_name, Starter)
47 xprocess.getinfo(proc_name).terminate()
H A Dconftest.py3 from xprocess import ProcessStarter
9 def example(xprocess): argument
17 xprocess.ensure("example", Starter)
19 xprocess.getinfo("example").terminate()
H A Dtest_startup_timeout.py8 from xprocess import ProcessStarter
31 def test_timeout_raise_exception(port, proc_name, xprocess, request): argument
39 xprocess.ensure(proc_name, Starter)
/dports/devel/py-pytest-xprocess/pytest-xprocess-0.17.1/
H A DREADME.rst1 pytest-xprocess
5 :target: https://github.com/pytest-dev/pytest-xprocess
21 :target: https://pypi.org/project/pytest-xprocess/
62 pip install pytest-xprocess
77 ``xprocess`` fixture usage
90 from xprocess import ProcessStarter
93 def myserver(xprocess):
108 xprocess.getinfo("myserver").terminate()
117 from xprocess import ProcessStarter
120 def myserver(xprocess):
[all …]
H A DPKG-INFO2 Name: pytest-xprocess
5 Home-page: https://github.com/pytest-dev/pytest-xprocess/
9 Description: pytest-xprocess
70 pip install pytest-xprocess
85 ``xprocess`` fixture usage
98 from xprocess import ProcessStarter
101 def myserver(xprocess):
116 xprocess.getinfo("myserver").terminate()
125 from xprocess import ProcessStarter
128 def myserver(xprocess):
[all …]
H A Dsetup.cfg2 name = pytest-xprocess
7 url = https://github.com/pytest-dev/pytest-xprocess/
32 xprocess
37 xprocess = pytest_xprocess
42 xprocess.py
H A Dpytest_xprocess.py4 from xprocess import XProcess
28 xprocess = XProcess(config, rootdir)
30 return xprocess._xkill(tw)
32 return xprocess._xshow(tw)
36 def xprocess(request): function
H A DCHANGELOG.rst11 … only attempt to match :attr:`ProcessStarter.pattern` when starting a process, if matched, xprocess
15 - Remove deprecated :meth:`xprocess.CompatStarter`
20 …` class variable optionaly overridden to define the maximum time :meth:`xprocess.ensure` should wa…
27 - pytest-xprocess now uses a sub-directory of `.pytest_cache` to store process related files.
78 https://github.com/pytest-dev/pytest-xprocess/issues/1
87 <https://github.com/pytest-dev/pytest-xprocess/>`_.
99 https://bitbucket.org/pytest-dev/pytest-xprocess/pull-request/3 for more
109 - Split out pytest independent process support into `xprocess.py`
H A DCONTRIBUTING.rst17 versions of pytest, pytest-xprocess and python release.
27 - Fork pytest-xprocess to your GitHub account by clicking the `Fork`_ button.
32 $ git clone https://github.com/pytest-dev/pytest-xprocess
33 $ cd pytest-xprocess
40 git remote add fork https://github.com/{username}/pytest-xprocess
42 - Using `Tox`_, create a virtual environment and install xprocess in editable mode with developme…
55 .. _Fork: https://github.com/pytest-dev/pytest-xprocess/fork
H A DRELEASING.rst2 Releasing pytest-xprocess
5 This document describes the steps to make a new ``pytest-xprocess`` release.
10 ``master`` should always be green and a potential release candidate. ``pytest-xprocess`` follows
37 $ git push git@github.com:pytest-dev/pytest-xprocess.git $VERSION
H A D.gitignore132 .xprocess/
/dports/devel/py-pytest-xprocess/pytest-xprocess-0.17.1/pytest_xprocess.egg-info/
H A DPKG-INFO2 Name: pytest-xprocess
5 Home-page: https://github.com/pytest-dev/pytest-xprocess/
9 Description: pytest-xprocess
70 pip install pytest-xprocess
85 ``xprocess`` fixture usage
98 from xprocess import ProcessStarter
101 def myserver(xprocess):
116 xprocess.getinfo("myserver").terminate()
125 from xprocess import ProcessStarter
128 def myserver(xprocess):
[all …]
/dports/www/py-werkzeug/Werkzeug-2.0.2/tests/
H A Dconftest.py11 from xprocess import ProcessStarter
110 def dev_server(xprocess, request, tmp_path): argument
132 _, log_path = xprocess.ensure(xp_name, Starter, restart=True)
137 xprocess.getinfo(xp_name).terminate()
/dports/audio/faust/faust-2.37.3/tests/pass-tests/
H A Dfelix1.dsp5 xprocess = 512 + hypot(2,button("foo"));
/dports/audio/faust/faust-2.37.3/tests/codegen-tests/
H A Dfelix1.dsp5 xprocess = 512 + hypot(2,button("foo"));
/dports/www/firefox-legacy/firefox-52.8.0esr/testing/web-platform/tests/tools/pytest/
H A Dplugin-test.sh12 cd ../pytest-xprocess
/dports/deskutils/py-vdirsyncer/vdirsyncer-0.18.0/
H A D.gitignore12 .xprocess
/dports/devel/py-pytest-xprocess/
H A D.license-catalog.mk5 _LICENSE_DISTFILES=pytest-xprocess-0.17.1.tar.gz
/dports/devel/py-pytest-xprocess/pytest-xprocess-0.17.1/.github/ISSUE_TEMPLATE/
H A Dbug_report.md29 - pytest-xprocess version [e.g. 0.15.0]
/dports/x11/pcdm/pcdm-690fdbdfc9fe482514161df1cd2bd994790c8a2d/src-qt5/PCDM/
H A DPCDM.pro14 src/pcdm-xprocess.cpp \
27 src/pcdm-xprocess.h \
/dports/multimedia/lives/lives-3.2.0/src/
H A Dinterface.h193 xprocess *create_processing(const char *text);
194 xprocess *create_threaded_dialog(char *text, boolean has_cancel, boolean *td_had_focus);
/dports/www/py-werkzeug/Werkzeug-2.0.2/
H A Dsetup.cfg109 [mypy-xprocess.*]
/dports/www/firefox-esr/firefox-91.8.0/testing/web-platform/tests/tools/third_party/pytest/doc/en/announce/
H A Drelease-2.3.5.rst12 - pytest-xprocess: managing external processes across test runs

12