python3Packages.aiohttp: remove pytest-xdist

Fails reproducible on hydra like this:

```
        try:
            # set_wakeup_fd() raises ValueError if this is not the
            # main thread.  By calling it early we ensure that an
            # event loop running in another thread cannot add a signal
            # handler.
>           signal.set_wakeup_fd(self._csock.fileno())
E           ValueError: set_wakeup_fd only works in main thread of the main interpreter
```

And was remove from upstreams tests due to 10-15% error rate way back
in 2018.
This commit is contained in:
Martin Weinelt 2021-06-20 19:39:18 +02:00
parent 70e15f8b84
commit af84578114

View file

@ -15,7 +15,6 @@
, freezegun , freezegun
, gunicorn , gunicorn
, pytest-mock , pytest-mock
, pytest-xdist
, pytestCheckHook , pytestCheckHook
, re-assert , re-assert
, trustme , trustme
@ -52,16 +51,11 @@ buildPythonPackage rec {
freezegun freezegun
gunicorn gunicorn
pytest-mock pytest-mock
pytest-xdist
pytestCheckHook pytestCheckHook
re-assert re-assert
trustme trustme
]; ];
pytestFlagsArray = [
"-n auto"
];
disabledTests = [ disabledTests = [
# Disable tests that require network access # Disable tests that require network access
"test_mark_formdata_as_processed" "test_mark_formdata_as_processed"