mikeizbicki / cmc-csci046

CMC's Data Structures and Algorithms Course Materials
55 stars 155 forks source link

Runtime Error: can't start new thread #502

Closed tnyamuronda closed 1 year ago

tnyamuronda commented 1 year ago

RuntimeError

I am getting the above error when I try to run the pytests, I'm not sure how to fix it

mikeizbicki commented 1 year ago

A "thread" is a type of program being run, and this error message indicates that you have too many programs being run. The most likely cause of this is that you are trying to run your pytest in parallel or you are currently running many programs in other terminal sessions.

The way you are reporting your error message here, I can't actually see what the command was that you ran, and so I can't provide further help. In the future, it is better not to take a screen shot, and instead copy/paste your entire terminal session into a code block. This will let you include more information and it makes it easier to read the information.