Fotis Gimian

Results 123 comments of Fotis Gimian

> Is SevenZipSharp itself is capable of extracting multipart archives? If yes then its worth to dive in. I'll test it out thoroughly tonight and let you know mate, thanks...

Okies, I've had some time to test this tonight with `Squid-Box.SevenZipSharp` and a multipart RAR file which I created from the PowerShell installer. ``` PS C:\Users\Fots\source\MultiTest.SevenZipSharp> dir C:\Users\Fots\Downloads\ Directory: C:\Users\Fots\Downloads...

The answer at https://sourceforge.net/p/sevenzip/discussion/45797/thread/79ecaee0/ may be helpful. > 7z.dll requests another volumes from your app via IArchiveOpenVolumeCallback interface. So you must implement IArchiveOpenVolumeCallback in IArchiveExtractCallback object.

Here's my hacky workaround to this for now in case it helps anyone: ```python @pytest.fixture def client(): return TestClient(app) # TODO: I've had to create an app without middleware for...

A slightly neater solution, which can be injected into any test which already has the client injected: ```python @pytest.fixture def exclude_middleware(): user_middleware = app.user_middleware.copy() app.user_middleware = [] app.middleware_stack = app.build_middleware_stack()...

Ensure you've installed using the Wox Full installer and then start the app called **Search Everything**. It seems Wox is using the Everything app as the engine for searching files,...

Im experiencing this too, FastAPI + the latest Gunicorn and uvicorn workers with Python 3.8.5 As soon as I stop using uvicorn (i.e. remove this line from my gunicorn config):...

Here's an exact replication of the issue: ``` [fots@workstation testing]$ python3.8 -V Python 3.8.5 [fots@workstation testing]$ python3.8 -m venv ~/.virtualenv/testing [fots@workstation testing]$ source ~/.virtualenv/testing/bin/activate (testing) [fots@workstation testing]$ pip install fastapi...

P.S.: I am using a Debug build and have also tried to execute `cmdlet.Invoke().OfType().ToList()` in the second test to be sure that the enumerator is fully exhausted, but sadly I...

> > > Which version are you using?Can you try with nightly? https://github.com/coverlet-coverage/coverlet/blob/master/Documentation/ConsumeNightlyBuild.md Thanks so much for the reply Marco. I'm using the latest release available on nuget which is...