Marcel Telka

Results 55 comments of Marcel Telka

> Haven't had access to a SunOS box for a long time now. I'm afraid you're on your own. BTW, it is possible to [install OpenIndiana](https://openindiana.org/downloads/) as a virtual machine....

`TestFSAPIsWithInvalidPath.test_proc_cmdline` fails similarly too: ``` self = def test_proc_cmdline(self): cmd = [self.funky_name, "-c", "import time; time.sleep(10)"] subp = self.spawn_testproc(cmd) p = psutil.Process(subp.pid) cmdline = p.cmdline() for part in cmdline: self.assertIsInstance(part,...

I suggest to start with sdist-only releases at PyPI. That should be straightforward, I think. Thanks.

This is the quick and dirty workaround: ``` --- persistent-5.0/src/persistent/tests/test_docs.py.orig +++ persistent-5.0/src/persistent/tests/test_docs.py @@ -36,7 +36,7 @@ prev, here = here, os.path.dirname(here) if here == prev: # Let's avoid infinite loops...

Yes, when the test is run in the git repo (or in sdist) then it pass. I'm talking about wheel. There is no `setup.py` in the wheel so `test_docs.py` cannot...

> Would you like to sign a contributor agreement ... Sorry, no.

In addition to the original report, it looks like that with Python 3.9.15 at least one (random) test always fails with `PytestUnraisableExceptionWarning`.

Testing is unable to start at all when started via `tox`: ``` py39: commands[0]> pytest --cov-report=xml --cov-report=term --cov=hpack ImportError while loading conftest '$(BUILD_DIR)/test/conftest.py'. test/conftest.py:19: in for d in os.listdir('test/test_fixtures') E...

With the `conftest.py` file removed all regular tests pass, but coverage fails: ``` Name Stmts Miss Branch BrPart Cover Missing ----------------------------------------------------------------------------------------------------------- /usr/lib/python3.9/vendor-packages/hpack/__init__.py 6 0 0 0 100% /usr/lib/python3.9/vendor-packages/hpack/exceptions.py 11 0...

I just tested version 5.3.2 on OpenIndiana and I see these three failures (all other tests either pass or skip): ``` =================================== FAILURES =================================== _________________________ test_jupyter_path_user_site __________________________ def test_jupyter_path_user_site(): with...