You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The code uses the mock library in test_awesome.py, but it's only listed as a test dependency under extras_require. This means users who install the package without the 'testing' extra will not have the mock library available, and the tests will fail if they try to run them. To resolve, the mock dependency should be in install_requires because it is a core dependency.