No flags found
Use flags to group coverage reports by test type, project and/or folders.
Then setup custom commit statuses and notifications for each flag.
e.g., #unittest #integration
#production #enterprise
#frontend #backend
e2fea36
... +0 ...
49d8fc0
Use flags to group coverage reports by test type, project and/or folders.
Then setup custom commit statuses and notifications for each flag.
e.g., #unittest #integration
#production #enterprise
#frontend #backend
641 | 641 | }, |
|
642 | 642 | } |
|
643 | 643 | if using_pysqlite3: |
|
644 | - | try: |
|
645 | - | info["pysqlite3"] = pkg_resources.get_distribution("pysqlite3").version |
|
646 | - | except pkg_resources.DistributionNotFound: |
|
647 | - | pass |
|
644 | + | for package in ("pysqlite3", "pysqlite3-binary"): |
|
645 | + | try: |
|
646 | + | info["pysqlite3"] = pkg_resources.get_distribution(package).version |
|
647 | + | break |
|
648 | + | except pkg_resources.DistributionNotFound: |
|
649 | + | pass |
|
648 | 650 | return info |
|
649 | 651 | ||
650 | 652 | def _plugins(self, request=None, all=False): |
Files | Coverage |
---|---|
datasette | -0.05% 91.43% |
Project Totals (31 files) | 91.43% |
49d8fc0
e2fea36