-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Address issue with python3.9 unit testing and turn on by default #3689
Comments
I had this same error but it went away after bringing up the docker database and running integration tests. My guess is that it has something to do with creating the adapter singleton, though you wouldn't think so from the test output. But an internet search shows at least a few people running into the same error trying to instantiate a singleton. The FilesystemSearcher class clearly has 3 arguments so that's not a strong candidate for this error. |
Or it could be something to do with inheriting from Iterable |
It was a mock in test_graph.py |
Describe the bug
Unit test run as expected for all python versions except 3.9. We should understand why these tests fail, implement fix, and turn on 3.9 tests.
Steps To Reproduce
run unit test with python3.9
Screenshots and log output
Additional context
I believe this is related to how we mock FilesystemSearcher in other tests? I found that debugging this issue is quite hard. I'll continue to put comments on this issue if I find more info.
The text was updated successfully, but these errors were encountered: