Steve Kowalik

Results 31 issues of Steve Kowalik

pytest 7 and above will call any setup as a hook for any module collected, which in this case calls into the Sphinx machinery due to importing the setup function...

Since the lowest supported version of Python has included unittest.mock for a long while, let's switch to it everywhere, and drop the now unneeded tests.compat module.

nose has been unmaintained upstream for years now, and so this project should move with the times. To that end, switch to either using bare assert statements, or where that...

While debugging a build failure for openSUSE, I discovered test_day and test_day_without_date failed in tests/test_managers.py due to the timezone falling through to America/Chicago and therefore not matching any records. Overriding...

awaiting input

Python >=3.3 has included mock in the standard library, so try and import that before falling back to the external mock.

pkg_resources is a little heavyweight, and has some rather glaring shortcomings for checking the metadata of an install Python package. importlib.metadata is contained in the standard library (as of 3.8),...

ssl.wrap_socket() has been deprecated since Python 3.7, and isn't recommended for use, and further, has been removed in Python 3.12. ssl.SSLContext().wrap_socket() is the new path forward, so switch the one...

**Describe the bug** Downloading the 4.0.4 release from GitHub: ``` steven@conjecture:/tmp/tmp.d811GMff6W% wget -q https://github.com/ReactiveX/RxPY/archive/refs/tags/v4.0.4.tar.gz steven@conjecture:/tmp/tmp.d811GMff6W% tar zxf v4.0.4.tar.gz steven@conjecture:/tmp/tmp.d811GMff6W% cd RxPY-4.0.4 steven@conjecture:/tmp/tmp.d811GMff6W/RxPY-4.0.4% grep version pyproject.toml version = "0.0.0" # NOTE:...

To stop testing with old versions of moto, unpin it from version 3, to the latest, and also change the test cases to cope with the new changes. ### Category...

tests
cla:signed

datetime.utcnow() is deprecated for Python 3.12+, and raises a warning. Since warnings are treated as errors, this results in test failures. Since utcnow calls are done by the SQLAlchemy mapping...