Povilas Kanapickas
                                            Povilas Kanapickas
                                        
                                    When running tests sometimes the following warning is fired (it is now disabled): ```builtins.ResourceWarning: unclosed ``` Full error: ``` buildbot.test.unit.util.test_httpclientservice.HTTPClientServiceTestTReqE2E.test_lots_parallel =============================================================================== [ERROR] Traceback (most recent call last): Failure: twisted.trial.util.DirtyReactorAggregateError: Reactor...
Buildbot worker can be installed from from pip and the interoperability tests run as usual like we do now. A good start could be https://github.com/buildbot/buildbot/pull/7230 which removed testing with Python...
We don't currently test search at all and this could easily break over time (e.g. when upgrading dependencies). Unit tests already cover the variations of the search.
Currently worker waits 5 seconds to send initial logs of the command even though they are available pretty much immediately (e.g. at least the command line and the environment). This...
Buildbot build scripts still use distutils module, which is deprecated.
Logs: ``` Failure: twisted.internet.defer.TimeoutError: (test_shell) still running at 15.0 secs ETraceback (most recent call last): File "/tmp/bbvenv/lib/python3.8/site-packages/twisted/trial/_asynctest.py", line 205, in deferRunCleanups yield func(*args, **kwargs) File "/tmp/bbvenv/lib/python3.8/site-packages/twisted/internet/defer.py", line 1660, in _inlineCallbacks...
`ReporterBase.reconfigService()` will start processing events due to `startConsuming()` being called before whole `reconfigService` finishes for the whole instance (including code in derived `reconfigService()`). This means that `sendMessage()` processing (called from...
Currently if user autologin fails there is no user-visible message anywhere: neither in the web UI nor in the logs. `IndexResource` contains: ``` try: yield self.config['auth'].maybeAutoLogin(request) except Error as e:...
This PR moves code out of cameraInit executable to aliceVision libraries that can be linked into other executables which in turn allows code reuse. The `Extract ...` commits only move...
Fixes #121 A small overview of benefits and potential downsides is extracted from #121 below: This compiler workaround would improve the code size and speed for the majority of user...