pyston / pyston_v1

The previous version of Pyston, a faster implementation of the Python programming language. Please use this link for the new repository:
https://github.com/pyston/pyston/
4.89k stars 289 forks source link

Silent crash when running the Celery test suite #1434

Open thedrow opened 4 years ago

thedrow commented 4 years ago

The following test silently crashes Pyston without any further information.

We should investigate.

undingen commented 4 years ago

thanks for the bug report!

Could you please help me with reproducing the issue. It tried the following:

virtualenv -p /usr/bin/pyston celeryenv
cd celeryenv
. bin/activate
pip install pytest
git clone https://github.com/celery/celery.git
cd celery
pip install -U -r requirements/test.txt
pip install -U -r requirements/default.txt
pip install -e .[mongodb]
pytest t/unit/backends/test_mongodb.py
86 passed in 0.28s

Which seemed to work

thedrow commented 4 years ago

I reproduced it on a Docker container. I'll try it again.