Sebastian Axelsen

Results 4 comments of Sebastian Axelsen

I have uncovered what seems to be causing the problem, although I don't know why. When I pip install **pyfasttext**, I install **cython** and **numpy** before. It seems that **cysignals**...

@kadir-gunel I install in several steps: ``` pip install cython pip install cysignals==1.6.6 pip install pyfasttext ``` Alternatively, if you use requirements.txt file, you can do ``` pip install cython...

I used https://github.com/joe-re/spectron-fake-menu, which seems to take an identical approach to the problem like https://www.npmjs.com/package/spectron-menu-addon, except the preload configuration gets injected after the app is created instead of having to...

I just encountered this issue, but seems to be resolved by explicitly marking the test cases with a transaction: `@pytest.mark.django_db(transaction=True)` Worked for me, at least.