simonw / datasette

Compare e2fea36 ... +0 ... 49d8fc0

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

Learn more about Codecov Flags here.

Showing 1 of 1 files from the diff.

@@ -641,10 +641,12 @@
Loading
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):

Everything is accounted for!

No changes detected that need to be reviewed.
What changes does Codecov check for?
Lines, not adjusted in diff, that have changed coverage data.
Files that introduced coverage data that had none before.
Files that have missing coverage data that once were tracked.
Files Coverage
datasette -0.05% 91.43%
Project Totals (31 files) 91.43%
Loading