pytest-services icon indicating copy to clipboard operation
pytest-services copied to clipboard

Collection of fixtures and utility functions to run service processes for your tests

Results 10 pytest-services issues
Sort by recently updated
recently updated
newest added

Paylogic got an email from readthedocs that they need a config file soon. This is the most minimal file as suggested by https://blog.readthedocs.com/migrate-configuration-v2/ We're also fine transferring ownership of the...

requirements-testing.txt: Remove mock from test requirements, as it is not used. - - - This change is [](https://reviewable.io/reviews/pytest-dev/pytest-services/44)

On building my packages I'm using `sphinx-build` command with `-n` switch which shows warmings about missing references. These are not critical issues. Here is the output with warnings: ```console +...

When running my pytests using pytest-services inside a Gitlab docker container, I get the stacktrace below and the tests fail. The problem seems to be that the log handler using...

Today I wanted to use the memcached service fixture in the CherryPy project, but because the fixture here doesn't support Windows, I had chose instead to [write our own](https://github.com/cherrypy/cherrypy/blob/7c1a88e14a030cc7a5e508f6ebef424afeefc35f/cherrypy/test/test_session.py#L427-L442). Perhaps...

enhancement
help wanted

There are few issues noticed while trying mysql fixture in Ubuntu 16.04 and MySQL 5.7. Ubuntu is changing /dev/shm to /run/shm. MySQL is changing instantiation to "mysqld --initialize". MySQL can't...

I tried a minimal testcase using `Xvfb`: ``` python import faulthandler import signal import pytest faulthandler.register(signal.SIGUSR1) @pytest.fixture(scope='session') def run_services(): return True def test_foo(xvfb): pass ``` unfortunately that hangs using 100%...

bug

Currently, `watcher_getter` is session scoped, which means that the finalizer will be session scoped too. Would it make sense to have `watcher_getter_function` accept `request` from the "real" fixture instead of...

Would it make sense to have way to manage a celery worker in pytest-services? I will implement it either way based on the process helpers in pytest-services and would be...