-
-
Notifications
You must be signed in to change notification settings - Fork 440
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
sqlite3.OperationalError: no such table: meta #918
Comments
Issue also occurring with Py2.7 (yes, I know it's EoL, but with the release in April I won't get the green light to upgrade until March at minimum). |
Some investigation: The table meta is indeed there, at least for me. Or at least, if I open up the file in sqlite3 I can see meta as one of the tables, and it does indeed have data, and it is accessible from Python via the sqlite3 package. E: Fix mentioned in #916 |
I believe this is the problem reported in #916, and since fixed on master. Can you try that fix? Please re-open this issue if it isn't solved. |
This is now available in 5.0.3: https://pypi.org/project/coverage/5.0.3/ |
Describe the bug
Since coverage
5.0.2
an sqlite exception is being thrown on Python 3.6 and 3.7. I have not tested 3.8 or any earlier versions.To Reproduce
How can we reproduce the problem? Please be specific.
What version of Python are you using?
3.6.8 and 3.7.6
What version of coverage.py are you using? The output of
coverage debug sys
is helpful.5.0.2
pip freeze
is helpful.What code are you running? Give us a specific commit of a specific repo that we can check out.
I cannot provide a repo, sorry. It's not an open source project.
What commands did you run?
python3 -m "nose" --with-coverage --cover-erase --cover-html -s -w unit -v
Expected behavior
An error shouldn't be thrown.
Additional context
It's fine on 5.0.1, just broken on 5.0.2.
The text was updated successfully, but these errors were encountered: