nedbat / coveragepy

The code coverage tool for Python
https://coverage.readthedocs.io
Apache License 2.0
2.99k stars 428 forks source link

Use forward slashes in relative paths on Windows #991

Closed inkychris closed 2 years ago

inkychris commented 4 years ago

Current Problem I'm running coverage for multiple Python versions on both Linux and Windows. They are all run on Gitlab, with the Windows tests using Python install on the host, and with the Linux tests using Docker. The paths of the build directories are not deterministic (may be picked up by multiple runners, existing or yet to exist) so I have relative_files = True .

The Windows paths use \ instead of / which, if the coverage combination and reporting is done on Windows, results in a report with every source file twice, one for each separator, although the end result appears to be correct. If this is done on Linux, it fails entirely when trying to resolve the paths containing backslashes.

Example Report

Name                                           Stmts   Miss Branch BrPart  Cover
 --------------------------------------------------------------------------------
 exmpl\__about__.py                                 6      0      0      0   100%
 exmpl/__about__.py                                 6      0      0      0   100%
 exmpl/__init__.py                                298     11    138      5    95%
 exmpl\__init__.py                                298     11    138      5    95%
 exmpl/_logging.py                                 47      2     16      1    92%
 exmpl\_logging.py                                 47      2     16      1    92%
 exmpl/cli.py                                      55      0     28      0   100%
 exmpl\cli.py                                      55      0     28      0   100%
etc...

Describe the solution you'd like Source paths on Windows should use forward slashes in relative paths to allow result combination and final reporting to be done on Linux, and to clean up the report output when done on Windows.

Describe alternatives you've considered Manually modifying the coverage results generated from coverage run.

nedbat commented 4 years ago

Have you tried using "--parallel=True", and then "coverage combine" with a "[paths]" setting to rewrite the paths as you need?

inkychris commented 4 years ago

I've been manually renaming the coverage files in their respective CI jobs which I think covers the --parallel=True option. I'm not sure that the [paths] section addresses this problem though, as the path relative to the root source directory is the bit that need rewriting, unless that is doable with this section of the config?

I've updated the description to include an example report generated on Windows from 4 test runs (2 Linux, 2 Windows). This doesn't work at all trying to report on Linux because it can't find any files with backslashes in, while Windows happily deals with the forward slashes used in the Linux results.

cjolowicz commented 2 years ago

I can confirm that the following paths-based configuration works well for combining coverage data across platforms:

[tool.coverage.paths]
source = ["src", "*/site-packages"]
tests = ["tests", "*/tests"]

[tool.coverage.run]
source = ["yourpackage", "tests"]

This assumes a project where the package under test is located under src/yourpackage, and the test suite under tests. It also assumes that the package is installed into the virtual environment where the tests run. Editable installs are not used.


As for the original issue, I can confirm that as well. Since relative_files does not normalize path separators, combining coverage data across platforms using relative_files instead of paths results in errors like this:

No source for code: '/Users/cjolowicz/.../yourpackage/tests\__init__.py'.

Note the mixed forward and backward slashes in the path. This was run on macOS using both the latest release and master of Coverage.py.

I have attached the coverage data from the GitHub Action runners. Use these commands to reproduce:

git clone https://github.com/cjolowicz/cookiecutter-hypermodern-python-instance
cd cookiecutter-hypermodern-python-instance
git switch --detach 11b803bd73c6f702aeaa477f2eba78f4b101950f
unzip coverage-data.zip
coverage combine
coverage report

Below is a full traceback for the No source error.

Full traceback ```python ╭─────────────────────────────── Traceback (most recent call last) ────────────────────────────────╮ │ │ │ /Users/cjolowicz/Code/github.com/nedbat/coveragepy/venv-py39/bin/coverage:33 in │ │ │ │ 30 │ │ 31 if __name__ == '__main__': │ │ 32 │ sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) │ │ ❱ 33 │ sys.exit(load_entry_point('coverage', 'console_scripts', 'coverage')()) │ │ 34 │ │ │ │ ╭─────────────────────────────────────────── locals ───────────────────────────────────────────╮ │ │ │ __annotations__ = {} │ │ │ │ __builtins__ = │ │ │ │ __cached__ = None │ │ │ │ __doc__ = None │ │ │ │ __file__ = '/Users/cjolowicz/Code/github.com/nedbat/coveragepy/venv-py39/… │ │ │ │ __loader__ = <_frozen_importlib_external.SourceFileLoader object at │ │ │ │ 0x108f6fca0> │ │ │ │ __name__ = '__main__' │ │ │ │ __package__ = None │ │ │ │ __requires__ = 'coverage' │ │ │ │ __spec__ = None │ │ │ │ distribution = │ │ │ │ importlib_load_entry_point = │ │ │ │ load_entry_point = │ │ │ │ re = │ │ │ ╰──────────────────────────────────────────────────────────────────────────────────────────────╯ │ │ /Users/cjolowicz/Code/github.com/nedbat/coveragepy/coverage/cmdline.py:879 in main │ │ │ │ 876 │ if argv is None: │ │ 877 │ │ argv = sys.argv[1:] │ │ 878 │ try: │ │ ❱ 879 │ │ status = CoverageScript().command_line(argv) │ │ 880 │ except _ExceptionDuringRun as err: │ │ 881 │ │ # An exception was caught while running the product code. The │ │ 882 │ │ # sys.exc_info() return tuple is packed into an _ExceptionDuringRun │ │ │ │ ╭─────────────────────────────────────────── locals ───────────────────────────────────────────╮ │ │ │ argv = ['report'] │ │ │ │ install = │ │ │ │ msg = "No source for code: │ │ │ │ '/Users/cjolowicz/Code/github.com/cjolowicz/cookiecutter-hyp"+44 │ │ │ │ status = 1 │ │ │ ╰──────────────────────────────────────────────────────────────────────────────────────────────╯ │ │ │ │ /Users/cjolowicz/Code/github.com/nedbat/coveragepy/coverage/cmdline.py:625 in command_line │ │ │ │ 622 │ │ │ │ 623 │ │ total = None │ │ 624 │ │ if options.action == "report": │ │ ❱ 625 │ │ │ total = self.coverage.report( │ │ 626 │ │ │ │ show_missing=options.show_missing, │ │ 627 │ │ │ │ skip_covered=options.skip_covered, │ │ 628 │ │ │ │ skip_empty=options.skip_empty, │ │ │ │ ╭─────────────────────────────────────────── locals ───────────────────────────────────────────╮ │ │ │ args = [] │ │ │ │ argv = [] │ │ │ │ contexts = None │ │ │ │ debug = None │ │ │ │ include = None │ │ │ │ ok = True │ │ │ │ omit = None │ │ │ │ options = │ │ │ │ parser = │ │ │ │ report_args = { │ │ │ │ │ 'morfs': [], │ │ │ │ │ 'ignore_errors': None, │ │ │ │ │ 'omit': None, │ │ │ │ │ 'include': None, │ │ │ │ │ 'contexts': None │ │ │ │ } │ │ │ │ self = │ │ │ │ source = None │ │ │ │ total = None │ │ │ ╰──────────────────────────────────────────────────────────────────────────────────────────────╯ │ │ │ │ /Users/cjolowicz/Code/github.com/nedbat/coveragepy/coverage/control.py:934 in report │ │ │ │ 931 │ │ │ sort=sort │ │ 932 │ │ ): │ │ 933 │ │ │ reporter = SummaryReporter(self) │ │ ❱ 934 │ │ │ return reporter.report(morfs, outfile=file) │ │ 935 │ │ │ 936 │ def annotate( │ │ 937 │ │ self, morfs=None, directory=None, ignore_errors=None, │ │ │ │ ╭───────────────────────────────── locals ─────────────────────────────────╮ │ │ │ contexts = None │ │ │ │ file = None │ │ │ │ ignore_errors = None │ │ │ │ include = None │ │ │ │ morfs = [] │ │ │ │ omit = None │ │ │ │ precision = None │ │ │ │ reporter = │ │ │ │ self = │ │ │ │ show_missing = None │ │ │ │ skip_covered = None │ │ │ │ skip_empty = None │ │ │ │ sort = None │ │ │ ╰──────────────────────────────────────────────────────────────────────────╯ │ │ │ │ /Users/cjolowicz/Code/github.com/nedbat/coveragepy/coverage/summary.py:43 in report │ │ │ │ 40 │ │ self.outfile = outfile or sys.stdout │ │ 41 │ │ │ │ 42 │ │ self.coverage.get_data().set_query_contexts(self.config.report_contexts) │ │ ❱ 43 │ │ for fr, analysis in get_analysis_to_report(self.coverage, morfs): │ │ 44 │ │ │ self.report_one_file(fr, analysis) │ │ 45 │ │ │ │ 46 │ │ # Prepare the formatting strings, header, and column sorting. │ │ │ │ ╭─────────────────────────────────────────── locals ───────────────────────────────────────────╮ │ │ │ analysis = │ │ │ │ fr = │ │ │ ╰──────────────────────────────────────────────────────────────────────────────────────────────╯ │ │ │ │ /Users/cjolowicz/Code/github.com/nedbat/coveragepy/coverage/report.py:72 in │ │ get_analysis_to_report │ │ │ │ 69 │ │ │ 70 │ for fr in sorted(file_reporters): │ │ 71 │ │ try: │ │ ❱ 72 │ │ │ analysis = coverage._analyze(fr) │ │ 73 │ │ except NotPython: │ │ 74 │ │ │ # Only report errors for .py files, and only if we didn't │ │ 75 │ │ │ # explicitly suppress those errors. │ │ │ │ ╭─────────────────────────────────────────── locals ───────────────────────────────────────────╮ │ │ │ analysis = │ │ │ │ config = │ │ │ │ coverage = │ │ │ │ file_reporters = [ │ │ │ │ │ │ │ │ ╰──────────────────────────────────────────────────────────────────────────────────────────────╯ │ │ │ │ /Users/cjolowicz/Code/github.com/nedbat/coveragepy/coverage/results.py:20 in __init__ │ │ │ │ 17 │ │ self.data = data │ │ 18 │ │ self.file_reporter = file_reporter │ │ 19 │ │ self.filename = file_mapper(self.file_reporter.filename) │ │ ❱ 20 │ │ self.statements = self.file_reporter.lines() │ │ 21 │ │ self.excluded = self.file_reporter.excluded_lines() │ │ 22 │ │ │ │ 23 │ │ # Identify missing statements. │ │ │ │ ╭─────────────────────────────────────────── locals ───────────────────────────────────────────╮ │ │ │ data = │ │ │ ╰──────────────────────────────────────────────────────────────────────────────────────────────╯ │ │ │ │ /Users/cjolowicz/Code/github.com/nedbat/coveragepy/coverage/python.py:189 in lines │ │ │ │ 186 │ │ │ 187 │ def lines(self): │ │ 188 │ │ """Return the line numbers of statements in the file.""" │ │ ❱ 189 │ │ return self.parser.statements │ │ 190 │ │ │ 191 │ def excluded_lines(self): │ │ 192 │ │ """Return the line numbers of statements in the file.""" │ │ │ │ ╭─────────────────────────────────────────── locals ───────────────────────────────────────────╮ │ │ │ self =
cjolowicz commented 2 years ago

FWIW the paths in the combined coverage look like this:

❯ sqlite3 .coverage 'select * from file'
1|tests/__init__.py
2|tests/test_main.py
3|src/cookiecutter_hypermodern_python_instance/__init__.py
4|src/cookiecutter_hypermodern_python_instance/__main__.py
5|tests\__init__.py
6|tests\test_main.py
MarkKoz commented 2 years ago

I'm running into a similar problem. I have coverage data generated in a Linux container, but want to generate the report on the Windows host. Since the Linux container wrote / separators, the Windows host cannot find the source files when generating the report.

freakboy3742 commented 2 years ago

In case it helps anyone else: I've been able to work around this by re-writing the Windows coverage file prior to coverage combine. As long as you use relative_files = True, it's a 1 liner in sqlite3:

sqlite3 .coverage.* "update file set path = replace(path, '\\', '/')"

If you aren't using relative_files = True, I imagine a very similar command would work; however, you'd also need to modify your [paths] definition to account for the fact that the Windows path that is being merged will be using C:/path/to/src rather than C:\path\to\src.

nedbat commented 2 years ago

Thanks for bring this to back to my attention, and sorry for letting it languish.

Definitely one thing is needed to fix this: if relative_files=True, then an entry in [paths] like foo should remain foo instead of being made absolute (/home/runner/project/foo or whatever). That's this:

--- a/coverage/files.py
+++ b/coverage/files.py
@@ -363,8 +363,9 @@ def add(self, pattern, result):

         # The pattern is meant to match a filepath.  Let's make it absolute
         # unless it already is, or is meant to match any prefix.
-        if not pattern.startswith('*') and not isabs_anywhere(pattern + pattern_sep):
-            pattern = abs_file(pattern)
+        if not self.relative:
+            if not pattern.startswith('*') and not isabs_anywhere(pattern + pattern_sep):
+                pattern = abs_file(pattern)
         if not pattern.endswith(pattern_sep):
             pattern += pattern_sep

Then if you had an entry like */tests (as @cjolowicz does), you could change it to tests instead, and it would work properly. But maybe it should also be that if using relative_files, then a pattern entry like */tests should match tests/foo/bar.etc. Today it doesn't because there's no slash before tests. In fact, maybe it should always match that? Doesn't */tests mean, a "tests" directory anywhere? Opinions?

nedbat commented 2 years ago

Actually, we don't even need the change in my diff if */foo will match foo/bar/baz.etc.

freakboy3742 commented 2 years ago

@nedbat That may be a bug, but I don't think it's related to the problem being described here (or, if it is, I'm not seeing the connection).

The issue I addressed with that SQLite hack isn't anything to do with the prefix; relative_paths is a bit of a red herring. The issue is Windows vs macOS/Unix path separators.

If you have a coverage file generated on macOS/Unix, the coverage data will refer to files as /path/to/tests/foo/bar.py; if you're on Windows, the coverage data will refer to C:\path\to\tests\foo\bar.py; even if you use prefixes to make /path/to/tests and C:\path\to\tests equivalent, the coverage data sees foo/bar.py and foo\bar.py as two separate locations. When you merge macOS + Windows coverage data and then generate a HTML report, one of those two locations won't exist - because /path/to/tests/foo\bar.py won't exist on macOS/Unix, and C:\path\to\tests\foo/bar.py won't exist on Windows - and that's the error that is reported:

(venv3.10) rkm@stirtoni briefcase % coverage combine
Combined data file .coverage.RUSSELLKEITA152.4780.453503
Combined data file .coverage.stirtoni.local.27867.230158
(venv3.10) rkm@stirtoni briefcase % coverage report 
No source for code: '/Users/rkm/beeware/briefcase/src\briefcase\__main__.py'.

Original coverage files

This problem still exists if you use relative_files; you just don't need the prefixes entry. However, as long as you've got at least one directory in your project structure the path separators don't match, and you're doing a parallel run that includes both a Windows machine and a Unix/macOS machine, you'll hit this problem.

The naïve fix is to make all path separators "unix" style when they're persisted in the coverage file - which is what the SQLite hack does. There might be other problems with taking that approach (especially if you're running the report on Windows) - but it's been enough to get me unstuck.

nedbat commented 2 years ago

@freakboy3742 are you using the [paths] setting to help combine files from different machines? I didn't see it in your branch for https://github.com/beeware/briefcase/pull/887. When combining, we try to adjust the separators so they will work properly across operating systems. Perhaps that's a non-obvious approach.

What's the best way for me to see the failing case when the separators aren't adjusted?

freakboy3742 commented 2 years ago

@nedbat I'm not; I'm using relative_paths because the base paths aren't predictable (because end users and/or CI won't be using C:\Users\rkm\beeware\briefcase as the source location).

As for the failing case - the coverage files I've uploaded contain the generated data; that data is from commit 0cd2ca0, CI run https://github.com/beeware/briefcase/actions/runs/3155776011.

nedbat commented 2 years ago

I've made some changes on a branch:

pip install git+https://github.com/nedbat/coveragepy@nedbat/bug991

@cjolowicz This should make your code combine and report correctly as-is. @freakboy3742 Can you add this to your pyproject.toml and try it without your SQLite fixup:?

[tool.coverage.paths]
src = ["src", "*/src"]
nedbat commented 2 years ago

Perhaps this should be more automatic, since src = ["src", "*/src"] seems kind of self-evident in a way.

freakboy3742 commented 2 years ago

@nedbat Can confirm the branch plus that config change fixes the problem I'm seeing without the need for the SQLite fix.

altendky commented 2 years ago

Thanks for taking a look at this again nedbat. I tried out the branch and also added a trivial path section to the config and I still get errors around the \ path separator. https://github.com/Chia-Network/chia-blockchain/pull/13587 This seems to be counter to comments above so perhaps I am still missing a piece.

https://github.com/Chia-Network/chia-blockchain/actions/runs/3175559386/jobs/5173910237#step:7:66

+ coverage xml --rcfile=.coveragerc --data-file coverage-reports/.coverage -o coverage-reports/coverage.xml
No source for code: '/home/runner/work/chia-blockchain/chia-blockchain/chia\__init__.py'.

Here is the [paths] configuration I added. https://github.com/Chia-Network/chia-blockchain/blob/test_coverage_991/.coveragerc#L10-L12

[paths]
chia = ["chia", "*/chia"]
tests = ["tests", "*/tests"]

I added some diagnostics as reference against the error message. https://github.com/Chia-Network/chia-blockchain/actions/runs/3175559386/jobs/5173910237#step:7:15 (note that I have slightly edited this to compensate for the command output streams not being synced to the output exactly

ls -la '/home/runner/work/chia-blockchain/chia-blockchain/chia\__init__.py'
+ ls -la '/home/runner/work/chia-blockchain/chia-blockchain/chia\__init__.py'
ls: cannot access '/home/runner/work/chia-blockchain/chia-blockchain/chia\__init__.py': No such file or directory
ls -la '/home/runner/work/chia-blockchain/chia-blockchain/chia/__init__.py'
+ ls -la /home/runner/work/chia-blockchain/chia-blockchain/chia/__init__.py
-rw-r--r-- 1 runner docker 347 Oct  3 16:03 /home/runner/work/chia-blockchain/chia-blockchain/chia/__init__.py
ls -la '/home/runner/work/chia-blockchain/chia-blockchain/chia'
+ ls -la /home/runner/work/chia-blockchain/chia-blockchain/chia
total 112
drwxr-xr-x 25 runner docker 4096 Oct  3 16:03 .
drwxr-xr-x 14 runner docker 4096 Oct  3 16:04 ..
-rw-r--r--  1 runner docker  347 Oct  3 16:03 __init__.py
drwxr-xr-x  2 runner docker 4096 Oct  3 16:03 clvm
drwxr-xr-x  2 runner docker 4096 Oct  3 16:03 cmds
drwxr-xr-x  2 runner docker 4096 Oct  3 16:03 consensus
drwxr-xr-x  2 runner docker 4096 Oct  3 16:03 daemon
drwxr-xr-x  3 runner docker 4096 Oct  3 16:03 data_layer
drwxr-xr-x  2 runner docker 4096 Oct  3 16:03 farmer
drwxr-xr-x  2 runner docker 4096 Oct  3 16:03 full_node
drwxr-xr-x  2 runner docker 4096 Oct  3 16:03 harvester
drwxr-xr-x  2 runner docker 4096 Oct  3 16:03 introducer
drwxr-xr-x  2 runner docker 4096 Oct  3 16:03 plot_sync
drwxr-xr-x  2 runner docker 4096 Oct  3 16:03 plotters
drwxr-xr-x  2 runner docker 4096 Oct  3 16:03 plotting
drwxr-xr-x  2 runner docker 4096 Oct  3 16:03 pools
drwxr-xr-x  2 runner docker 4096 Oct  3 16:03 protocols
-rw-r--r--  1 runner docker    0 Oct  3 16:03 py.typed
-rw-r--r--  1 runner docker 5514 Oct  3 16:03 pyinstaller.spec
drwxr-xr-x  2 runner docker 4096 Oct  3 16:03 rpc
drwxr-xr-x  2 runner docker 4096 Oct  3 16:03 seeder
drwxr-xr-x  2 runner docker 4096 Oct  3 16:03 server
drwxr-xr-x  2 runner docker 4096 Oct  3 16:03 simulator
drwxr-xr-x  2 runner docker 4096 Oct  3 16:03 ssl
drwxr-xr-x  2 runner docker 4096 Oct  3 16:03 timelord
drwxr-xr-x  3 runner docker 4096 Oct  3 16:03 types
drwxr-xr-x  2 runner docker 4096 Oct  3 16:03 util
drwxr-xr-x 10 runner docker 4096 Oct  3 16:03 wallet
nedbat commented 2 years ago

@altendky thanks for looking into it. Can you add --debug=pathmap to the coverage combine step? It will show the file names it is considering, and how the get remapped.

altendky commented 2 years ago

Sure thing.

https://github.com/Chia-Network/chia-blockchain/actions/runs/3177768807/jobs/5178689238#step:7:54

coverage combine --rcfile=.coveragerc --debug=pathmap --data-file coverage-reports/.coverage coverage-data/
+ coverage combine --rcfile=.coveragerc --debug=pathmap --data-file coverage-reports/.coverage coverage-data/
Aliases (relative=True):
 Rule: '"*/chia"]' -> '["chia"/' using regex '(?s:[\\\\/]home[\\\\/]runner[\\\\/]work[\\\\/]chia\\-blockchain[\\\\/]chia\\-blockchain[\\\\/]".*[\\\\/]chia"\\][\\\\/])'
 Rule: '"*/tests"]' -> '["tests"/' using regex '(?s:[\\\\/]home[\\\\/]runner[\\\\/]work[\\\\/]chia\\-blockchain[\\\\/]chia\\-blockchain[\\\\/]".*[\\\\/]tests"\\][\\\\/])'
No rules match, path 'tests/__init__.py' is unchanged
No rules match, path 'tests/conftest.py' is unchanged
No rules match, path 'tests/setup_nodes.py' is unchanged
No rules match, path 'chia/__init__.py' is unchanged
No rules match, path 'chia/consensus/__init__.py' is unchanged
No rules match, path 'chia/consensus/constants.py' is unchanged
No rules match, path 'chia/types/__init__.py' is unchanged
<snip>
No rules match, path 'tests\\wallet\\sync\\config.py' is unchanged
No rules match, path 'tests\\wallet\\sync\\test_wallet_sync.py' is unchanged
No rules match, path 'tests\\wallet\\sync\\__init__.py' is unchanged
No rules match, path 'tests\\weight_proof\\config.py' is unchanged
No rules match, path 'tests\\weight_proof\\test_weight_proof.py' is unchanged
No rules match, path 'tests\\weight_proof\\__init__.py' is unchanged
Combined data file coverage-data/.coverage.tests_ubuntu_python-3.10_core.cmds
Combined data file coverage-data/.coverage.tests_ubuntu_python-3.7_core.cmds
Combined data file coverage-data/.coverage.tests_ubuntu_python-3.9_core.cmds
Combined data file coverage-data/.coverage.tests_windows_python-3.10_core.cmds
Combined data file coverage-data/.coverage.tests_macos_python-3.9_core.cmds
Combined data file coverage-data/.coverage.tests_macos_python-3.10_core.cmds
Combined data file coverage-data/.coverage.tests_ubuntu_python-3.8_core.cmds
Combined data file coverage-data/.coverage.tests_windows_python-3.7_core.cmds
Combined data file coverage-data/.coverage.tests_windows_python-3.9_core.cmds
Combined data file coverage-data/.coverage.tests_windows_python-3.8_core.cmds
nedbat commented 2 years ago

@altendky I see what happened. The earlier discussion was about a pyproject.toml file, and you put that snippet into your .coveragerc file. The syntax you need is different:

[paths]
chia = 
    chia
    */chia
tests = 
    tests
    */tests
altendky commented 2 years ago

And here I thought I was being a good little dev and exactly following the example. :] Fixing now.

altendky commented 2 years ago

Yep, that works. Thanks for identifying my error.

https://github.com/Chia-Network/chia-blockchain/actions/runs/3177937330/jobs/5179030056#step:7:3405

Matched path 'chia\\__init__.py' to rule '*/chia' -> 'chia/', producing 'chia/__init__.py'

It is apparently not obvious that this would be needed to trigger platform compatibility. :] I would suggest considering making directory separator compatibility automatic and perhaps separate from path equivalency configuration.

But anyways, looks like we'll be turning on Windows coverage inclusion 'soon' and I very much appreciate that. Now, to take the next step and get this data well reported and require coverage for PRs...

nedbat commented 2 years ago

Hi, I've added more to the nedbat/bug991 branch (commit 285ca254). Now relative paths will be combined implicitly, so you shouldn't need "obvious" [paths] configurations anymore. @freakboy3742 @altendky can you try it on your projects with no [paths] settings at all? You will still need the coverage combine step.

freakboy3742 commented 2 years ago

@nedbat No luck, sorry - commit 285ca25 without a [paths] config isn't working for me.

pyproject.toml

[tool.coverage.run]
parallel = true
branch = true
relative_files = true
source = ["src/briefcase"]

[tool.coverage.report]
show_missing = true
skip_covered = true
skip_empty = true
precision = 1
exclude_lines = [
    "pragma: no cover",
    "@(abc\\.)?abstractmethod",
    "NotImplementedError\\(\\)"
]

Combine and report:

(venv3.10) rkm@stirtoni briefcase % python -m coverage combine          
Combined data file .coverage.stirtoni.local.21166.405507
Combined data file .coverage.RUSSELLKEITA152.6268.549117
(venv3.10) rkm@stirtoni briefcase % python -m coverage report           
No source for code: '/Users/rkm/beeware/briefcase/src\briefcase\__init__.py'.

I get the same result if I disable relative_paths, except the error becomes:

No source for code: '/Users/rkm/beeware/briefcase/\\MAC\HOME\beeware\briefcase\src\briefcase\__init__.py'.
nedbat commented 2 years ago

@freakboy3742 hmm, i've been running your project as a test, that's odd. Can you try these commands?

python -m coverage debug data
python -m coverage combine --debug=pathmap
python -m coverage debug data
altendky commented 2 years ago

Seems ok here without the [paths] section.

https://github.com/Chia-Network/chia-blockchain/actions/runs/3216374294/jobs/5258265284#step:7:3472

Matched path 'chia\\__init__.py' to rule '*/chia' -> 'chia/', producing 'chia/__init__.py'

Also looks ok in the next run where I removed the coverage debug, other debug, and CI minimization.

Thanks for cleaning this up here. :]

freakboy3742 commented 2 years ago

@nedbat Log output below.

Test suite is running on an x86 Mac mini running Monterey (12.5.1), and a Parallels virtual machine on the same physical machine running Windows 10. The Parallels machine is accessing the source folder over a network drive (hence the \\MAC\HOME\beeware path mentioned in my last post). The Briefcase repo is at commit 385a4aa1.

Setup ``` (venv3.10) rkm@stirtoni briefcase % pip install git+https://github.com/nedbat/coveragepy@nedbat/bug991 Collecting git+https://github.com/nedbat/coveragepy@nedbat/bug991 Cloning https://github.com/nedbat/coveragepy (to revision nedbat/bug991) to /private/var/folders/n0/qg_lm_2n53qfpbj24kl5mgb40000gn/T/pip-req-build-pwusiwu_ Running command git clone --filter=blob:none --quiet https://github.com/nedbat/coveragepy /private/var/folders/n0/qg_lm_2n53qfpbj24kl5mgb40000gn/T/pip-req-build-pwusiwu_ Running command git checkout -b nedbat/bug991 --track origin/nedbat/bug991 Switched to a new branch 'nedbat/bug991' branch 'nedbat/bug991' set up to track 'origin/nedbat/bug991'. Resolved https://github.com/nedbat/coveragepy to commit 285ca254de91070a916da2c70078301c3c23f82d Installing build dependencies ... done Getting requirements to build wheel ... done Installing backend dependencies ... done Preparing metadata (pyproject.toml) ... done [notice] A new release of pip available: 22.1.2 -> 22.2.2 [notice] To update, run: pip install --upgrade pip ```
python -m coverage debug data ``` (venv3.10) rkm@stirtoni briefcase % python -m coverage debug data -- data ------------------------------------------------------ path: /Users/rkm/beeware/briefcase/.coverage No data collected: file doesn't exist ----- path: /Users/rkm/beeware/briefcase/.coverage.RUSSELLKEITA152.9876.078390 has_arcs: True 58 files: src\briefcase\__init__.py: 7 lines src\briefcase\__main__.py: 41 lines src\briefcase\cmdline.py: 81 lines src\briefcase\commands\__init__.py: 10 lines src\briefcase\commands\base.py: 330 lines src\briefcase\commands\build.py: 32 lines src\briefcase\commands\create.py: 448 lines src\briefcase\commands\dev.py: 104 lines src\briefcase\commands\new.py: 219 lines src\briefcase\commands\open.py: 27 lines src\briefcase\commands\package.py: 68 lines src\briefcase\commands\publish.py: 36 lines src\briefcase\commands\run.py: 44 lines src\briefcase\commands\update.py: 58 lines src\briefcase\commands\upgrade.py: 86 lines src\briefcase\config.py: 183 lines src\briefcase\console.py: 290 lines src\briefcase\exceptions.py: 88 lines src\briefcase\integrations\__init__.py: 2 lines src\briefcase\integrations\android_sdk.py: 622 lines src\briefcase\integrations\base.py: 50 lines src\briefcase\integrations\cookiecutter.py: 34 lines src\briefcase\integrations\docker.py: 169 lines src\briefcase\integrations\download.py: 51 lines src\briefcase\integrations\flatpak.py: 132 lines src\briefcase\integrations\git.py: 8 lines src\briefcase\integrations\java.py: 120 lines src\briefcase\integrations\linuxdeploy.py: 200 lines src\briefcase\integrations\rcedit.py: 45 lines src\briefcase\integrations\subprocess.py: 249 lines src\briefcase\integrations\visualstudio.py: 95 lines src\briefcase\integrations\wix.py: 92 lines src\briefcase\integrations\xcode.py: 159 lines src\briefcase\platforms\__init__.py: 12 lines src\briefcase\platforms\android\__init__.py: 1 line src\briefcase\platforms\android\gradle.py: 151 lines src\briefcase\platforms\iOS\__init__.py: 9 lines src\briefcase\platforms\iOS\xcode.py: 259 lines src\briefcase\platforms\linux\__init__.py: 3 lines src\briefcase\platforms\linux\appimage.py: 151 lines src\briefcase\platforms\linux\deb.py: 0 lines src\briefcase\platforms\linux\flatpak.py: 126 lines src\briefcase\platforms\linux\rpm.py: 0 lines src\briefcase\platforms\linux\snap.py: 0 lines src\briefcase\platforms\macOS\__init__.py: 340 lines src\briefcase\platforms\macOS\app.py: 38 lines src\briefcase\platforms\macOS\xcode.py: 71 lines src\briefcase\platforms\tvOS\__init__.py: 0 lines src\briefcase\platforms\tvOS\xcode.py: 0 lines src\briefcase\platforms\watchOS\__init__.py: 0 lines src\briefcase\platforms\watchOS\xcode.py: 0 lines src\briefcase\platforms\wearos\__init__.py: 0 lines src\briefcase\platforms\wearos\gradle.py: 0 lines src\briefcase\platforms\web\__init__.py: 1 line src\briefcase\platforms\web\static.py: 238 lines src\briefcase\platforms\windows\__init__.py: 135 lines src\briefcase\platforms\windows\app.py: 73 lines src\briefcase\platforms\windows\visualstudio.py: 56 lines ----- path: /Users/rkm/beeware/briefcase/.coverage.stirtoni.local.31610.312178 has_arcs: True 58 files: src/briefcase/__init__.py: 7 lines src/briefcase/__main__.py: 41 lines src/briefcase/cmdline.py: 81 lines src/briefcase/commands/__init__.py: 10 lines src/briefcase/commands/base.py: 330 lines src/briefcase/commands/build.py: 32 lines src/briefcase/commands/create.py: 448 lines src/briefcase/commands/dev.py: 104 lines src/briefcase/commands/new.py: 220 lines src/briefcase/commands/open.py: 28 lines src/briefcase/commands/package.py: 68 lines src/briefcase/commands/publish.py: 36 lines src/briefcase/commands/run.py: 44 lines src/briefcase/commands/update.py: 58 lines src/briefcase/commands/upgrade.py: 86 lines src/briefcase/config.py: 183 lines src/briefcase/console.py: 290 lines src/briefcase/exceptions.py: 88 lines src/briefcase/integrations/__init__.py: 2 lines src/briefcase/integrations/android_sdk.py: 628 lines src/briefcase/integrations/base.py: 50 lines src/briefcase/integrations/cookiecutter.py: 34 lines src/briefcase/integrations/docker.py: 171 lines src/briefcase/integrations/download.py: 51 lines src/briefcase/integrations/flatpak.py: 132 lines src/briefcase/integrations/git.py: 8 lines src/briefcase/integrations/java.py: 120 lines src/briefcase/integrations/linuxdeploy.py: 206 lines src/briefcase/integrations/rcedit.py: 45 lines src/briefcase/integrations/subprocess.py: 249 lines src/briefcase/integrations/visualstudio.py: 95 lines src/briefcase/integrations/wix.py: 92 lines src/briefcase/integrations/xcode.py: 159 lines src/briefcase/platforms/__init__.py: 12 lines src/briefcase/platforms/android/__init__.py: 1 line src/briefcase/platforms/android/gradle.py: 151 lines src/briefcase/platforms/iOS/__init__.py: 9 lines src/briefcase/platforms/iOS/xcode.py: 259 lines src/briefcase/platforms/linux/__init__.py: 3 lines src/briefcase/platforms/linux/appimage.py: 161 lines src/briefcase/platforms/linux/deb.py: 0 lines src/briefcase/platforms/linux/flatpak.py: 126 lines src/briefcase/platforms/linux/rpm.py: 0 lines src/briefcase/platforms/linux/snap.py: 0 lines src/briefcase/platforms/macOS/__init__.py: 339 lines src/briefcase/platforms/macOS/app.py: 39 lines src/briefcase/platforms/macOS/xcode.py: 71 lines src/briefcase/platforms/tvOS/__init__.py: 0 lines src/briefcase/platforms/tvOS/xcode.py: 0 lines src/briefcase/platforms/watchOS/__init__.py: 0 lines src/briefcase/platforms/watchOS/xcode.py: 0 lines src/briefcase/platforms/wearos/__init__.py: 0 lines src/briefcase/platforms/wearos/gradle.py: 0 lines src/briefcase/platforms/web/__init__.py: 1 line src/briefcase/platforms/web/static.py: 239 lines src/briefcase/platforms/windows/__init__.py: 135 lines src/briefcase/platforms/windows/app.py: 72 lines src/briefcase/platforms/windows/visualstudio.py: 55 lines ```
python -m coverage combine --debug=pathmap ``` (venv3.10) rkm@stirtoni briefcase % python -m coverage combine --debug=pathmap Combined data file .coverage.RUSSELLKEITA152.9876.078390 Combined data file .coverage.stirtoni.local.31610.312178 ```
python -m coverage debug data ``` (venv3.10) rkm@stirtoni briefcase % python -m coverage debug data -- data ------------------------------------------------------ path: /Users/rkm/beeware/briefcase/.coverage has_arcs: True 116 files: src/briefcase/__init__.py: 7 lines src/briefcase/__main__.py: 41 lines src/briefcase/cmdline.py: 81 lines src/briefcase/commands/__init__.py: 10 lines src/briefcase/commands/base.py: 330 lines src/briefcase/commands/build.py: 32 lines src/briefcase/commands/create.py: 448 lines src/briefcase/commands/dev.py: 104 lines src/briefcase/commands/new.py: 220 lines src/briefcase/commands/open.py: 28 lines src/briefcase/commands/package.py: 68 lines src/briefcase/commands/publish.py: 36 lines src/briefcase/commands/run.py: 44 lines src/briefcase/commands/update.py: 58 lines src/briefcase/commands/upgrade.py: 86 lines src/briefcase/config.py: 183 lines src/briefcase/console.py: 290 lines src/briefcase/exceptions.py: 88 lines src/briefcase/integrations/__init__.py: 2 lines src/briefcase/integrations/android_sdk.py: 628 lines src/briefcase/integrations/base.py: 50 lines src/briefcase/integrations/cookiecutter.py: 34 lines src/briefcase/integrations/docker.py: 171 lines src/briefcase/integrations/download.py: 51 lines src/briefcase/integrations/flatpak.py: 132 lines src/briefcase/integrations/git.py: 8 lines src/briefcase/integrations/java.py: 120 lines src/briefcase/integrations/linuxdeploy.py: 206 lines src/briefcase/integrations/rcedit.py: 45 lines src/briefcase/integrations/subprocess.py: 249 lines src/briefcase/integrations/visualstudio.py: 95 lines src/briefcase/integrations/wix.py: 92 lines src/briefcase/integrations/xcode.py: 159 lines src/briefcase/platforms/__init__.py: 12 lines src/briefcase/platforms/android/__init__.py: 1 line src/briefcase/platforms/android/gradle.py: 151 lines src/briefcase/platforms/iOS/__init__.py: 9 lines src/briefcase/platforms/iOS/xcode.py: 259 lines src/briefcase/platforms/linux/__init__.py: 3 lines src/briefcase/platforms/linux/appimage.py: 161 lines src/briefcase/platforms/linux/deb.py: 0 lines src/briefcase/platforms/linux/flatpak.py: 126 lines src/briefcase/platforms/linux/rpm.py: 0 lines src/briefcase/platforms/linux/snap.py: 0 lines src/briefcase/platforms/macOS/__init__.py: 339 lines src/briefcase/platforms/macOS/app.py: 39 lines src/briefcase/platforms/macOS/xcode.py: 71 lines src/briefcase/platforms/tvOS/__init__.py: 0 lines src/briefcase/platforms/tvOS/xcode.py: 0 lines src/briefcase/platforms/watchOS/__init__.py: 0 lines src/briefcase/platforms/watchOS/xcode.py: 0 lines src/briefcase/platforms/wearos/__init__.py: 0 lines src/briefcase/platforms/wearos/gradle.py: 0 lines src/briefcase/platforms/web/__init__.py: 1 line src/briefcase/platforms/web/static.py: 239 lines src/briefcase/platforms/windows/__init__.py: 135 lines src/briefcase/platforms/windows/app.py: 72 lines src/briefcase/platforms/windows/visualstudio.py: 55 lines src\briefcase\__init__.py: 7 lines src\briefcase\__main__.py: 41 lines src\briefcase\cmdline.py: 81 lines src\briefcase\commands\__init__.py: 10 lines src\briefcase\commands\base.py: 330 lines src\briefcase\commands\build.py: 32 lines src\briefcase\commands\create.py: 448 lines src\briefcase\commands\dev.py: 104 lines src\briefcase\commands\new.py: 219 lines src\briefcase\commands\open.py: 27 lines src\briefcase\commands\package.py: 68 lines src\briefcase\commands\publish.py: 36 lines src\briefcase\commands\run.py: 44 lines src\briefcase\commands\update.py: 58 lines src\briefcase\commands\upgrade.py: 86 lines src\briefcase\config.py: 183 lines src\briefcase\console.py: 290 lines src\briefcase\exceptions.py: 88 lines src\briefcase\integrations\__init__.py: 2 lines src\briefcase\integrations\android_sdk.py: 622 lines src\briefcase\integrations\base.py: 50 lines src\briefcase\integrations\cookiecutter.py: 34 lines src\briefcase\integrations\docker.py: 169 lines src\briefcase\integrations\download.py: 51 lines src\briefcase\integrations\flatpak.py: 132 lines src\briefcase\integrations\git.py: 8 lines src\briefcase\integrations\java.py: 120 lines src\briefcase\integrations\linuxdeploy.py: 200 lines src\briefcase\integrations\rcedit.py: 45 lines src\briefcase\integrations\subprocess.py: 249 lines src\briefcase\integrations\visualstudio.py: 95 lines src\briefcase\integrations\wix.py: 92 lines src\briefcase\integrations\xcode.py: 159 lines src\briefcase\platforms\__init__.py: 12 lines src\briefcase\platforms\android\__init__.py: 1 line src\briefcase\platforms\android\gradle.py: 151 lines src\briefcase\platforms\iOS\__init__.py: 9 lines src\briefcase\platforms\iOS\xcode.py: 259 lines src\briefcase\platforms\linux\__init__.py: 3 lines src\briefcase\platforms\linux\appimage.py: 151 lines src\briefcase\platforms\linux\deb.py: 0 lines src\briefcase\platforms\linux\flatpak.py: 126 lines src\briefcase\platforms\linux\rpm.py: 0 lines src\briefcase\platforms\linux\snap.py: 0 lines src\briefcase\platforms\macOS\__init__.py: 340 lines src\briefcase\platforms\macOS\app.py: 38 lines src\briefcase\platforms\macOS\xcode.py: 71 lines src\briefcase\platforms\tvOS\__init__.py: 0 lines src\briefcase\platforms\tvOS\xcode.py: 0 lines src\briefcase\platforms\watchOS\__init__.py: 0 lines src\briefcase\platforms\watchOS\xcode.py: 0 lines src\briefcase\platforms\wearos\__init__.py: 0 lines src\briefcase\platforms\wearos\gradle.py: 0 lines src\briefcase\platforms\web\__init__.py: 1 line src\briefcase\platforms\web\static.py: 238 lines src\briefcase\platforms\windows\__init__.py: 135 lines src\briefcase\platforms\windows\app.py: 73 lines src\briefcase\platforms\windows\visualstudio.py: 56 lines ```
nedbat commented 2 years ago

@freakboy3742 thanks for sticking with me on this. I don't understand why the debug output isn't appearing in the combine step. Can you make it --debug=sys,config,pathmap, and we'll get some clues? It seems like it's not running the code from the branch, but I see that it installed the code from the branch.

freakboy3742 commented 2 years ago

@nedbat

python -m coverage combine --debug=sys,config,pathmap ``` (venv3.10) rkm@stirtoni briefcase % python -m coverage combine --debug=sys,config,pathmap -- config ---------------------------------------------------- attempted_config_files: .coveragerc setup.cfg tox.ini pyproject.toml branch: True command_line: None concurrency: None config_file: /Users/rkm/beeware/briefcase/pyproject.toml config_files_read: /Users/rkm/beeware/briefcase/setup.cfg /Users/rkm/beeware/briefcase/tox.ini /Users/rkm/beeware/briefcase/pyproject.toml context: None cover_pylib: False data_file: .coverage debug: sys config pathmap disable_warnings: -none- dynamic_context: None exclude_list: pragma: no cover @(abc\.)?abstractmethod NotImplementedError\(\) extra_css: None fail_under: 0.0 html_dir: htmlcov html_skip_covered: None html_skip_empty: None html_title: Coverage report ignore_errors: False json_output: coverage.json json_pretty_print: False json_show_contexts: False lcov_output: coverage.lcov note: None parallel: True partial_always_list: while (True|1|False|0): if (True|1|False|0): partial_list: #\s*(pragma|PRAGMA)[:\s]?\s*(no|NO)\s*(branch|BRANCH) paths: OrderedDict() plugin_options: {} plugins: -none- precision: 1 relative_files: True report_contexts: None report_include: None report_omit: None run_include: None run_omit: None show_contexts: False show_missing: True sigterm: False skip_covered: True skip_empty: True sort: None source: src/briefcase source_pkgs: -none- timid: False xml_output: coverage.xml xml_package_depth: 99 -- sys ------------------------------------------------------- coverage_version: 6.5.1a0 coverage_module: /Users/rkm/beeware/briefcase/venv3.10/lib/python3.10/site-packages/coverage/__init__.py tracer: -none- CTracer: available plugins.file_tracers: -none- plugins.configurers: -none- plugins.context_switchers: -none- configs_attempted: .coveragerc setup.cfg tox.ini pyproject.toml configs_read: /Users/rkm/beeware/briefcase/setup.cfg /Users/rkm/beeware/briefcase/tox.ini /Users/rkm/beeware/briefcase/pyproject.toml config_file: /Users/rkm/beeware/briefcase/pyproject.toml config_contents: b'[build-system]\nrequires = ["setuptools>=60", "setuptools_scm[toml]>=7.0"]\nbuild-backend = "setuptools.build_meta"\n\n[tool.coverage.run]\nparallel = true\nbranch = true\nrelative_files = true\nsource = ["src/briefcase"]\n\n[tool.coverage.report]\nshow_missing = true\nskip_covered = true\nskip_empty = true\nprecision = 1\nexclude_lines = [\n "pragma: no cover",\n "@(abc\\\\.)?abstractmethod",\n "NotImplementedError\\\\(\\\\)"\n]\n\n[tool.isort]\nprofile = "black"\nskip_glob = [\n "docs/conf.py",\n "venv*",\n "local",\n]\nmulti_line_output = 3\n\n[tool.pytest.ini_options]\ntestpaths = ["tests"]\nfilterwarnings = [\n "error",\n]\n\n# need to ensure build directories aren\'t excluded from recursion\nnorecursedirs = []\n\n[tool.setuptools_scm]\n# To enable SCM versioning, we need an empty tool configuration for setuptools_scm\n\n[tool.towncrier]\ndirectory = "changes"\npackage = "briefcase"\npackage_dir = "src"\nfilename = "docs/background/releases.rst"\ntitle_format = "{version} ({project_date})"\ntemplate = "changes/template.rst"\n' data_file: /Users/rkm/beeware/briefcase/.coverage python: 3.10.5 (v3.10.5:f377153967, Jun 6 2022, 12:36:10) [Clang 13.0.0 (clang-1300.0.29.30)] platform: macOS-12.5.1-x86_64-i386-64bit implementation: CPython executable: /Users/rkm/beeware/briefcase/venv3.10/bin/python def_encoding: utf-8 fs_encoding: utf-8 pid: 32685 cwd: /Users/rkm/beeware/briefcase path: /Users/rkm/beeware/briefcase /Library/Frameworks/Python.framework/Versions/3.10/lib/python310.zip /Library/Frameworks/Python.framework/Versions/3.10/lib/python3.10 /Library/Frameworks/Python.framework/Versions/3.10/lib/python3.10/lib-dynload /Users/rkm/beeware/briefcase/venv3.10/lib/python3.10/site-packages /Users/rkm/beeware/briefcase/src /Users/rkm/beeware/toga-chart/src /Users/rkm/beeware/toga/src/core /Users/rkm/beeware/toga/src/cocoa environment: HOME = /Users/rkm command_line: /Users/rkm/beeware/briefcase/venv3.10/lib/python3.10/site-packages/coverage/__main__.py combine --debug=sys,config,pathmap sqlite3_version: 2.6.0 sqlite3_sqlite_version: 3.37.2 sqlite3_temp_store: 0 sqlite3_compile_options: ATOMIC_INTRINSICS=1, COMPILER=clang-13.0.0, DEFAULT_AUTOVACUUM, DEFAULT_CACHE_SIZE=-2000, DEFAULT_FILE_FORMAT=4, DEFAULT_JOURNAL_SIZE_LIMIT=-1, DEFAULT_MMAP_SIZE=0, DEFAULT_PAGE_SIZE=4096, DEFAULT_PCACHE_INITSZ=20, DEFAULT_RECURSIVE_TRIGGERS, DEFAULT_SECTOR_SIZE=4096, DEFAULT_SYNCHRONOUS=2, DEFAULT_WAL_AUTOCHECKPOINT=1000, DEFAULT_WAL_SYNCHRONOUS=2, DEFAULT_WORKER_THREADS=0, ENABLE_FTS3, ENABLE_FTS3_PARENTHESIS, ENABLE_FTS4, ENABLE_FTS5, ENABLE_GEOPOLY, ENABLE_JSON1, ENABLE_MATH_FUNCTIONS, ENABLE_RTREE, MALLOC_SOFT_LIMIT=1024, MAX_ATTACHED=10, MAX_COLUMN=2000, MAX_COMPOUND_SELECT=500, MAX_DEFAULT_PAGE_SIZE=8192, MAX_EXPR_DEPTH=1000, MAX_FUNCTION_ARG=127, MAX_LENGTH=1000000000, MAX_LIKE_PATTERN_LENGTH=50000, MAX_MMAP_SIZE=0x7fff0000, MAX_PAGE_COUNT=1073741823, MAX_PAGE_SIZE=65536, MAX_SQL_LENGTH=1000000000, MAX_TRIGGER_DEPTH=1000, MAX_VARIABLE_NUMBER=32766, MAX_VDBE_OP=250000000, MAX_WORKER_THREADS=8, MUTEX_PTHREADS, OMIT_AUTOINIT, SYSTEM_MALLOC, TCL, TEMP_STORE=1, THREADSAFE=1 -- end ------------------------------------------------------- Combined data file .coverage.stirtoni.local.32521.103139 Combined data file .coverage.RUSSELLKEITA152.5280.308040 ```
nedbat commented 2 years ago

@freakboy3742 I don't understand why there's no output from the combine step. I've added a more distinctive version marker to the branch. Can you try running with nedbat/bug991 again?

freakboy3742 commented 2 years ago

Ok - that seems to have worked. Running on Briefcase hash 385a4aa1:

Coverage install ``` (venv3.10) rkm@stirtoni briefcase % pip install git+https://github.com/nedbat/coveragepy@nedbat/bug991 Collecting git+https://github.com/nedbat/coveragepy@nedbat/bug991 Cloning https://github.com/nedbat/coveragepy (to revision nedbat/bug991) to /private/var/folders/n0/qg_lm_2n53qfpbj24kl5mgb40000gn/T/pip-req-build-2ym9tl66 Running command git clone --filter=blob:none --quiet https://github.com/nedbat/coveragepy /private/var/folders/n0/qg_lm_2n53qfpbj24kl5mgb40000gn/T/pip-req-build-2ym9tl66 Running command git checkout -b nedbat/bug991 --track origin/nedbat/bug991 Switched to a new branch 'nedbat/bug991' branch 'nedbat/bug991' set up to track 'origin/nedbat/bug991'. Resolved https://github.com/nedbat/coveragepy to commit fe016ae140793d810c4b00728b319aacb38b6b3d Installing build dependencies ... done Getting requirements to build wheel ... done Installing backend dependencies ... done Preparing metadata (pyproject.toml) ... done Building wheels for collected packages: coverage Building wheel for coverage (pyproject.toml) ... done Created wheel for coverage: filename=coverage-6.5.1a991-cp310-cp310-macosx_10_9_universal2.whl size=193388 sha256=5c7c7d84d8f910590ab6cb0d9597c999917b325412709aaa66219986cfee1d46 Stored in directory: /private/var/folders/n0/qg_lm_2n53qfpbj24kl5mgb40000gn/T/pip-ephem-wheel-cache-ngq75890/wheels/dc/51/6f/49d49e3280f23f47f30e97df90d2d482ae9ab27b9cd2696112 Successfully built coverage Installing collected packages: coverage Attempting uninstall: coverage Found existing installation: coverage 6.5.1a0 Uninstalling coverage-6.5.1a0: Successfully uninstalled coverage-6.5.1a0 Successfully installed coverage-6.5.1a991 [notice] A new release of pip available: 22.1.2 -> 22.2.2 [notice] To update, run: pip install --upgrade pip ```
python -m coverage combine --debug=sys,config,pathmap ``` (venv3.10) rkm@stirtoni briefcase % python -m coverage combine --debug=sys,config,pathmap -- config ---------------------------------------------------- attempted_config_files: .coveragerc setup.cfg tox.ini pyproject.toml branch: True command_line: None concurrency: None config_file: /Users/rkm/beeware/briefcase/pyproject.toml config_files_read: /Users/rkm/beeware/briefcase/setup.cfg /Users/rkm/beeware/briefcase/tox.ini /Users/rkm/beeware/briefcase/pyproject.toml context: None cover_pylib: False data_file: .coverage debug: sys config pathmap disable_warnings: -none- dynamic_context: None exclude_list: pragma: no cover @(abc\.)?abstractmethod NotImplementedError\(\) extra_css: None fail_under: 0.0 html_dir: htmlcov html_skip_covered: None html_skip_empty: None html_title: Coverage report ignore_errors: False json_output: coverage.json json_pretty_print: False json_show_contexts: False lcov_output: coverage.lcov note: None parallel: True partial_always_list: while (True|1|False|0): if (True|1|False|0): partial_list: #\s*(pragma|PRAGMA)[:\s]?\s*(no|NO)\s*(branch|BRANCH) paths: OrderedDict() plugin_options: {} plugins: -none- precision: 1 relative_files: True report_contexts: None report_include: None report_omit: None run_include: None run_omit: None show_contexts: False show_missing: True sigterm: False skip_covered: True skip_empty: True sort: None source: src/briefcase source_pkgs: -none- timid: False xml_output: coverage.xml xml_package_depth: 99 -- sys ------------------------------------------------------- coverage_version: 6.5.1a991 coverage_module: /Users/rkm/beeware/briefcase/venv3.10/lib/python3.10/site-packages/coverage/__init__.py tracer: -none- CTracer: available plugins.file_tracers: -none- plugins.configurers: -none- plugins.context_switchers: -none- configs_attempted: .coveragerc setup.cfg tox.ini pyproject.toml configs_read: /Users/rkm/beeware/briefcase/setup.cfg /Users/rkm/beeware/briefcase/tox.ini /Users/rkm/beeware/briefcase/pyproject.toml config_file: /Users/rkm/beeware/briefcase/pyproject.toml config_contents: b'[build-system]\nrequires = ["setuptools>=60", "setuptools_scm[toml]>=7.0"]\nbuild-backend = "setuptools.build_meta"\n\n[tool.coverage.run]\nparallel = true\nbranch = true\nrelative_files = true\nsource = ["src/briefcase"]\n\n[tool.coverage.report]\nshow_missing = true\nskip_covered = true\nskip_empty = true\nprecision = 1\nexclude_lines = [\n "pragma: no cover",\n "@(abc\\\\.)?abstractmethod",\n "NotImplementedError\\\\(\\\\)"\n]\n\n[tool.isort]\nprofile = "black"\nskip_glob = [\n "docs/conf.py",\n "venv*",\n "local",\n]\nmulti_line_output = 3\n\n[tool.pytest.ini_options]\ntestpaths = ["tests"]\nfilterwarnings = [\n "error",\n]\n\n# need to ensure build directories aren\'t excluded from recursion\nnorecursedirs = []\n\n[tool.setuptools_scm]\n# To enable SCM versioning, we need an empty tool configuration for setuptools_scm\n\n[tool.towncrier]\ndirectory = "changes"\npackage = "briefcase"\npackage_dir = "src"\nfilename = "docs/background/releases.rst"\ntitle_format = "{version} ({project_date})"\ntemplate = "changes/template.rst"\n' data_file: /Users/rkm/beeware/briefcase/.coverage python: 3.10.5 (v3.10.5:f377153967, Jun 6 2022, 12:36:10) [Clang 13.0.0 (clang-1300.0.29.30)] platform: macOS-12.5.1-x86_64-i386-64bit implementation: CPython executable: /Users/rkm/beeware/briefcase/venv3.10/bin/python def_encoding: utf-8 fs_encoding: utf-8 pid: 67404 cwd: /Users/rkm/beeware/briefcase path: /Users/rkm/beeware/briefcase /Library/Frameworks/Python.framework/Versions/3.10/lib/python310.zip /Library/Frameworks/Python.framework/Versions/3.10/lib/python3.10 /Library/Frameworks/Python.framework/Versions/3.10/lib/python3.10/lib-dynload /Users/rkm/beeware/briefcase/venv3.10/lib/python3.10/site-packages /Users/rkm/beeware/briefcase/src /Users/rkm/beeware/toga-chart/src /Users/rkm/beeware/toga/src/core /Users/rkm/beeware/toga/src/cocoa environment: HOME = /Users/rkm command_line: /Users/rkm/beeware/briefcase/venv3.10/lib/python3.10/site-packages/coverage/__main__.py combine --debug=sys,config,pathmap sqlite3_version: 2.6.0 sqlite3_sqlite_version: 3.37.2 sqlite3_temp_store: 0 sqlite3_compile_options: ATOMIC_INTRINSICS=1, COMPILER=clang-13.0.0, DEFAULT_AUTOVACUUM, DEFAULT_CACHE_SIZE=-2000, DEFAULT_FILE_FORMAT=4, DEFAULT_JOURNAL_SIZE_LIMIT=-1, DEFAULT_MMAP_SIZE=0, DEFAULT_PAGE_SIZE=4096, DEFAULT_PCACHE_INITSZ=20, DEFAULT_RECURSIVE_TRIGGERS, DEFAULT_SECTOR_SIZE=4096, DEFAULT_SYNCHRONOUS=2, DEFAULT_WAL_AUTOCHECKPOINT=1000, DEFAULT_WAL_SYNCHRONOUS=2, DEFAULT_WORKER_THREADS=0, ENABLE_FTS3, ENABLE_FTS3_PARENTHESIS, ENABLE_FTS4, ENABLE_FTS5, ENABLE_GEOPOLY, ENABLE_JSON1, ENABLE_MATH_FUNCTIONS, ENABLE_RTREE, MALLOC_SOFT_LIMIT=1024, MAX_ATTACHED=10, MAX_COLUMN=2000, MAX_COMPOUND_SELECT=500, MAX_DEFAULT_PAGE_SIZE=8192, MAX_EXPR_DEPTH=1000, MAX_FUNCTION_ARG=127, MAX_LENGTH=1000000000, MAX_LIKE_PATTERN_LENGTH=50000, MAX_MMAP_SIZE=0x7fff0000, MAX_PAGE_COUNT=1073741823, MAX_PAGE_SIZE=65536, MAX_SQL_LENGTH=1000000000, MAX_TRIGGER_DEPTH=1000, MAX_VARIABLE_NUMBER=32766, MAX_VDBE_OP=250000000, MAX_WORKER_THREADS=8, MUTEX_PTHREADS, OMIT_AUTOINIT, SYSTEM_MALLOC, TCL, TEMP_STORE=1, THREADSAFE=1 -- end ------------------------------------------------------- Aliases (relative=True): Generating rule: '*/src' -> 'src/' using regex '^(.*[\\\\/])?src[\\\\/]' Matched path 'src\\briefcase\\__init__.py' to rule '*/src' -> 'src/', producing 'src/briefcase/__init__.py' Matched path 'src\\briefcase\\config.py' to rule '*/src' -> 'src/', producing 'src/briefcase/config.py' Matched path 'src\\briefcase\\platforms\\__init__.py' to rule '*/src' -> 'src/', producing 'src/briefcase/platforms/__init__.py' Matched path 'src\\briefcase\\exceptions.py' to rule '*/src' -> 'src/', producing 'src/briefcase/exceptions.py' Matched path 'src\\briefcase\\console.py' to rule '*/src' -> 'src/', producing 'src/briefcase/console.py' Matched path 'src\\briefcase\\commands\\__init__.py' to rule '*/src' -> 'src/', producing 'src/briefcase/commands/__init__.py' Matched path 'src\\briefcase\\commands\\build.py' to rule '*/src' -> 'src/', producing 'src/briefcase/commands/build.py' Matched path 'src\\briefcase\\commands\\base.py' to rule '*/src' -> 'src/', producing 'src/briefcase/commands/base.py' Matched path 'src\\briefcase\\integrations\\__init__.py' to rule '*/src' -> 'src/', producing 'src/briefcase/integrations/__init__.py' Matched path 'src\\briefcase\\integrations\\android_sdk.py' to rule '*/src' -> 'src/', producing 'src/briefcase/integrations/android_sdk.py' Matched path 'src\\briefcase\\integrations\\java.py' to rule '*/src' -> 'src/', producing 'src/briefcase/integrations/java.py' Matched path 'src\\briefcase\\integrations\\cookiecutter.py' to rule '*/src' -> 'src/', producing 'src/briefcase/integrations/cookiecutter.py' Matched path 'src\\briefcase\\integrations\\docker.py' to rule '*/src' -> 'src/', producing 'src/briefcase/integrations/docker.py' Matched path 'src\\briefcase\\integrations\\download.py' to rule '*/src' -> 'src/', producing 'src/briefcase/integrations/download.py' Matched path 'src\\briefcase\\integrations\\flatpak.py' to rule '*/src' -> 'src/', producing 'src/briefcase/integrations/flatpak.py' Matched path 'src\\briefcase\\integrations\\git.py' to rule '*/src' -> 'src/', producing 'src/briefcase/integrations/git.py' Matched path 'src\\briefcase\\integrations\\linuxdeploy.py' to rule '*/src' -> 'src/', producing 'src/briefcase/integrations/linuxdeploy.py' Matched path 'src\\briefcase\\integrations\\rcedit.py' to rule '*/src' -> 'src/', producing 'src/briefcase/integrations/rcedit.py' Matched path 'src\\briefcase\\integrations\\subprocess.py' to rule '*/src' -> 'src/', producing 'src/briefcase/integrations/subprocess.py' Matched path 'src\\briefcase\\integrations\\visualstudio.py' to rule '*/src' -> 'src/', producing 'src/briefcase/integrations/visualstudio.py' Matched path 'src\\briefcase\\integrations\\wix.py' to rule '*/src' -> 'src/', producing 'src/briefcase/integrations/wix.py' Matched path 'src\\briefcase\\integrations\\xcode.py' to rule '*/src' -> 'src/', producing 'src/briefcase/integrations/xcode.py' Matched path 'src\\briefcase\\integrations\\base.py' to rule '*/src' -> 'src/', producing 'src/briefcase/integrations/base.py' Matched path 'src\\briefcase\\commands\\create.py' to rule '*/src' -> 'src/', producing 'src/briefcase/commands/create.py' Matched path 'src\\briefcase\\commands\\dev.py' to rule '*/src' -> 'src/', producing 'src/briefcase/commands/dev.py' Matched path 'src\\briefcase\\commands\\new.py' to rule '*/src' -> 'src/', producing 'src/briefcase/commands/new.py' Matched path 'src\\briefcase\\commands\\open.py' to rule '*/src' -> 'src/', producing 'src/briefcase/commands/open.py' Matched path 'src\\briefcase\\commands\\package.py' to rule '*/src' -> 'src/', producing 'src/briefcase/commands/package.py' Matched path 'src\\briefcase\\commands\\publish.py' to rule '*/src' -> 'src/', producing 'src/briefcase/commands/publish.py' Matched path 'src\\briefcase\\commands\\run.py' to rule '*/src' -> 'src/', producing 'src/briefcase/commands/run.py' Matched path 'src\\briefcase\\commands\\update.py' to rule '*/src' -> 'src/', producing 'src/briefcase/commands/update.py' Matched path 'src\\briefcase\\commands\\upgrade.py' to rule '*/src' -> 'src/', producing 'src/briefcase/commands/upgrade.py' Matched path 'src\\briefcase\\cmdline.py' to rule '*/src' -> 'src/', producing 'src/briefcase/cmdline.py' Matched path 'src\\briefcase\\platforms\\linux\\__init__.py' to rule '*/src' -> 'src/', producing 'src/briefcase/platforms/linux/__init__.py' Matched path 'src\\briefcase\\platforms\\linux\\appimage.py' to rule '*/src' -> 'src/', producing 'src/briefcase/platforms/linux/appimage.py' Matched path 'src\\briefcase\\platforms\\macOS\\__init__.py' to rule '*/src' -> 'src/', producing 'src/briefcase/platforms/macOS/__init__.py' Matched path 'src\\briefcase\\platforms\\macOS\\app.py' to rule '*/src' -> 'src/', producing 'src/briefcase/platforms/macOS/app.py' Matched path 'src\\briefcase\\platforms\\windows\\__init__.py' to rule '*/src' -> 'src/', producing 'src/briefcase/platforms/windows/__init__.py' Matched path 'src\\briefcase\\platforms\\windows\\app.py' to rule '*/src' -> 'src/', producing 'src/briefcase/platforms/windows/app.py' Matched path 'src\\briefcase\\__main__.py' to rule '*/src' -> 'src/', producing 'src/briefcase/__main__.py' Matched path 'src\\briefcase\\platforms\\android\\__init__.py' to rule '*/src' -> 'src/', producing 'src/briefcase/platforms/android/__init__.py' Matched path 'src\\briefcase\\platforms\\android\\gradle.py' to rule '*/src' -> 'src/', producing 'src/briefcase/platforms/android/gradle.py' Matched path 'src\\briefcase\\platforms\\iOS\\__init__.py' to rule '*/src' -> 'src/', producing 'src/briefcase/platforms/iOS/__init__.py' Matched path 'src\\briefcase\\platforms\\iOS\\xcode.py' to rule '*/src' -> 'src/', producing 'src/briefcase/platforms/iOS/xcode.py' Matched path 'src\\briefcase\\platforms\\linux\\flatpak.py' to rule '*/src' -> 'src/', producing 'src/briefcase/platforms/linux/flatpak.py' Matched path 'src\\briefcase\\platforms\\macOS\\xcode.py' to rule '*/src' -> 'src/', producing 'src/briefcase/platforms/macOS/xcode.py' Matched path 'src\\briefcase\\platforms\\web\\__init__.py' to rule '*/src' -> 'src/', producing 'src/briefcase/platforms/web/__init__.py' Matched path 'src\\briefcase\\platforms\\web\\static.py' to rule '*/src' -> 'src/', producing 'src/briefcase/platforms/web/static.py' Matched path 'src\\briefcase\\platforms\\windows\\visualstudio.py' to rule '*/src' -> 'src/', producing 'src/briefcase/platforms/windows/visualstudio.py' Matched path 'src\\briefcase\\platforms\\watchOS\\xcode.py' to rule '*/src' -> 'src/', producing 'src/briefcase/platforms/watchOS/xcode.py' Matched path 'src\\briefcase\\platforms\\watchOS\\__init__.py' to rule '*/src' -> 'src/', producing 'src/briefcase/platforms/watchOS/__init__.py' Matched path 'src\\briefcase\\platforms\\wearos\\__init__.py' to rule '*/src' -> 'src/', producing 'src/briefcase/platforms/wearos/__init__.py' Matched path 'src\\briefcase\\platforms\\wearos\\gradle.py' to rule '*/src' -> 'src/', producing 'src/briefcase/platforms/wearos/gradle.py' Matched path 'src\\briefcase\\platforms\\tvOS\\xcode.py' to rule '*/src' -> 'src/', producing 'src/briefcase/platforms/tvOS/xcode.py' Matched path 'src\\briefcase\\platforms\\tvOS\\__init__.py' to rule '*/src' -> 'src/', producing 'src/briefcase/platforms/tvOS/__init__.py' Matched path 'src\\briefcase\\platforms\\linux\\deb.py' to rule '*/src' -> 'src/', producing 'src/briefcase/platforms/linux/deb.py' Matched path 'src\\briefcase\\platforms\\linux\\snap.py' to rule '*/src' -> 'src/', producing 'src/briefcase/platforms/linux/snap.py' Matched path 'src\\briefcase\\platforms\\linux\\rpm.py' to rule '*/src' -> 'src/', producing 'src/briefcase/platforms/linux/rpm.py' Combined data file .coverage.RUSSELLKEITA152.8776.200265 Matched path 'src/briefcase/__init__.py' to rule '*/src' -> 'src/', producing 'src/briefcase/__init__.py' Matched path 'src/briefcase/config.py' to rule '*/src' -> 'src/', producing 'src/briefcase/config.py' Matched path 'src/briefcase/platforms/__init__.py' to rule '*/src' -> 'src/', producing 'src/briefcase/platforms/__init__.py' Matched path 'src/briefcase/exceptions.py' to rule '*/src' -> 'src/', producing 'src/briefcase/exceptions.py' Matched path 'src/briefcase/console.py' to rule '*/src' -> 'src/', producing 'src/briefcase/console.py' Matched path 'src/briefcase/commands/__init__.py' to rule '*/src' -> 'src/', producing 'src/briefcase/commands/__init__.py' Matched path 'src/briefcase/commands/build.py' to rule '*/src' -> 'src/', producing 'src/briefcase/commands/build.py' Matched path 'src/briefcase/commands/base.py' to rule '*/src' -> 'src/', producing 'src/briefcase/commands/base.py' Matched path 'src/briefcase/integrations/__init__.py' to rule '*/src' -> 'src/', producing 'src/briefcase/integrations/__init__.py' Matched path 'src/briefcase/integrations/android_sdk.py' to rule '*/src' -> 'src/', producing 'src/briefcase/integrations/android_sdk.py' Matched path 'src/briefcase/integrations/java.py' to rule '*/src' -> 'src/', producing 'src/briefcase/integrations/java.py' Matched path 'src/briefcase/integrations/cookiecutter.py' to rule '*/src' -> 'src/', producing 'src/briefcase/integrations/cookiecutter.py' Matched path 'src/briefcase/integrations/docker.py' to rule '*/src' -> 'src/', producing 'src/briefcase/integrations/docker.py' Matched path 'src/briefcase/integrations/download.py' to rule '*/src' -> 'src/', producing 'src/briefcase/integrations/download.py' Matched path 'src/briefcase/integrations/flatpak.py' to rule '*/src' -> 'src/', producing 'src/briefcase/integrations/flatpak.py' Matched path 'src/briefcase/integrations/git.py' to rule '*/src' -> 'src/', producing 'src/briefcase/integrations/git.py' Matched path 'src/briefcase/integrations/linuxdeploy.py' to rule '*/src' -> 'src/', producing 'src/briefcase/integrations/linuxdeploy.py' Matched path 'src/briefcase/integrations/rcedit.py' to rule '*/src' -> 'src/', producing 'src/briefcase/integrations/rcedit.py' Matched path 'src/briefcase/integrations/subprocess.py' to rule '*/src' -> 'src/', producing 'src/briefcase/integrations/subprocess.py' Matched path 'src/briefcase/integrations/visualstudio.py' to rule '*/src' -> 'src/', producing 'src/briefcase/integrations/visualstudio.py' Matched path 'src/briefcase/integrations/wix.py' to rule '*/src' -> 'src/', producing 'src/briefcase/integrations/wix.py' Matched path 'src/briefcase/integrations/xcode.py' to rule '*/src' -> 'src/', producing 'src/briefcase/integrations/xcode.py' Matched path 'src/briefcase/integrations/base.py' to rule '*/src' -> 'src/', producing 'src/briefcase/integrations/base.py' Matched path 'src/briefcase/commands/create.py' to rule '*/src' -> 'src/', producing 'src/briefcase/commands/create.py' Matched path 'src/briefcase/commands/dev.py' to rule '*/src' -> 'src/', producing 'src/briefcase/commands/dev.py' Matched path 'src/briefcase/commands/new.py' to rule '*/src' -> 'src/', producing 'src/briefcase/commands/new.py' Matched path 'src/briefcase/commands/open.py' to rule '*/src' -> 'src/', producing 'src/briefcase/commands/open.py' Matched path 'src/briefcase/commands/package.py' to rule '*/src' -> 'src/', producing 'src/briefcase/commands/package.py' Matched path 'src/briefcase/commands/publish.py' to rule '*/src' -> 'src/', producing 'src/briefcase/commands/publish.py' Matched path 'src/briefcase/commands/run.py' to rule '*/src' -> 'src/', producing 'src/briefcase/commands/run.py' Matched path 'src/briefcase/commands/update.py' to rule '*/src' -> 'src/', producing 'src/briefcase/commands/update.py' Matched path 'src/briefcase/commands/upgrade.py' to rule '*/src' -> 'src/', producing 'src/briefcase/commands/upgrade.py' Matched path 'src/briefcase/cmdline.py' to rule '*/src' -> 'src/', producing 'src/briefcase/cmdline.py' Matched path 'src/briefcase/platforms/linux/__init__.py' to rule '*/src' -> 'src/', producing 'src/briefcase/platforms/linux/__init__.py' Matched path 'src/briefcase/platforms/linux/appimage.py' to rule '*/src' -> 'src/', producing 'src/briefcase/platforms/linux/appimage.py' Matched path 'src/briefcase/platforms/macOS/__init__.py' to rule '*/src' -> 'src/', producing 'src/briefcase/platforms/macOS/__init__.py' Matched path 'src/briefcase/platforms/macOS/app.py' to rule '*/src' -> 'src/', producing 'src/briefcase/platforms/macOS/app.py' Matched path 'src/briefcase/platforms/windows/__init__.py' to rule '*/src' -> 'src/', producing 'src/briefcase/platforms/windows/__init__.py' Matched path 'src/briefcase/platforms/windows/app.py' to rule '*/src' -> 'src/', producing 'src/briefcase/platforms/windows/app.py' Matched path 'src/briefcase/__main__.py' to rule '*/src' -> 'src/', producing 'src/briefcase/__main__.py' Matched path 'src/briefcase/platforms/android/__init__.py' to rule '*/src' -> 'src/', producing 'src/briefcase/platforms/android/__init__.py' Matched path 'src/briefcase/platforms/android/gradle.py' to rule '*/src' -> 'src/', producing 'src/briefcase/platforms/android/gradle.py' Matched path 'src/briefcase/platforms/iOS/__init__.py' to rule '*/src' -> 'src/', producing 'src/briefcase/platforms/iOS/__init__.py' Matched path 'src/briefcase/platforms/iOS/xcode.py' to rule '*/src' -> 'src/', producing 'src/briefcase/platforms/iOS/xcode.py' Matched path 'src/briefcase/platforms/linux/flatpak.py' to rule '*/src' -> 'src/', producing 'src/briefcase/platforms/linux/flatpak.py' Matched path 'src/briefcase/platforms/macOS/xcode.py' to rule '*/src' -> 'src/', producing 'src/briefcase/platforms/macOS/xcode.py' Matched path 'src/briefcase/platforms/web/__init__.py' to rule '*/src' -> 'src/', producing 'src/briefcase/platforms/web/__init__.py' Matched path 'src/briefcase/platforms/web/static.py' to rule '*/src' -> 'src/', producing 'src/briefcase/platforms/web/static.py' Matched path 'src/briefcase/platforms/windows/visualstudio.py' to rule '*/src' -> 'src/', producing 'src/briefcase/platforms/windows/visualstudio.py' Matched path 'src/briefcase/platforms/watchOS/xcode.py' to rule '*/src' -> 'src/', producing 'src/briefcase/platforms/watchOS/xcode.py' Matched path 'src/briefcase/platforms/watchOS/__init__.py' to rule '*/src' -> 'src/', producing 'src/briefcase/platforms/watchOS/__init__.py' Matched path 'src/briefcase/platforms/wearos/__init__.py' to rule '*/src' -> 'src/', producing 'src/briefcase/platforms/wearos/__init__.py' Matched path 'src/briefcase/platforms/wearos/gradle.py' to rule '*/src' -> 'src/', producing 'src/briefcase/platforms/wearos/gradle.py' Matched path 'src/briefcase/platforms/tvOS/xcode.py' to rule '*/src' -> 'src/', producing 'src/briefcase/platforms/tvOS/xcode.py' Matched path 'src/briefcase/platforms/tvOS/__init__.py' to rule '*/src' -> 'src/', producing 'src/briefcase/platforms/tvOS/__init__.py' Matched path 'src/briefcase/platforms/linux/deb.py' to rule '*/src' -> 'src/', producing 'src/briefcase/platforms/linux/deb.py' Matched path 'src/briefcase/platforms/linux/snap.py' to rule '*/src' -> 'src/', producing 'src/briefcase/platforms/linux/snap.py' Matched path 'src/briefcase/platforms/linux/rpm.py' to rule '*/src' -> 'src/', producing 'src/briefcase/platforms/linux/rpm.py' Matched path 'src/briefcase/__init__.py' to rule '*/src' -> 'src/', producing 'src/briefcase/__init__.py' Matched path 'src/briefcase/config.py' to rule '*/src' -> 'src/', producing 'src/briefcase/config.py' Matched path 'src/briefcase/platforms/__init__.py' to rule '*/src' -> 'src/', producing 'src/briefcase/platforms/__init__.py' Matched path 'src/briefcase/exceptions.py' to rule '*/src' -> 'src/', producing 'src/briefcase/exceptions.py' Matched path 'src/briefcase/console.py' to rule '*/src' -> 'src/', producing 'src/briefcase/console.py' Matched path 'src/briefcase/commands/__init__.py' to rule '*/src' -> 'src/', producing 'src/briefcase/commands/__init__.py' Matched path 'src/briefcase/commands/build.py' to rule '*/src' -> 'src/', producing 'src/briefcase/commands/build.py' Matched path 'src/briefcase/commands/base.py' to rule '*/src' -> 'src/', producing 'src/briefcase/commands/base.py' Matched path 'src/briefcase/integrations/__init__.py' to rule '*/src' -> 'src/', producing 'src/briefcase/integrations/__init__.py' Matched path 'src/briefcase/integrations/android_sdk.py' to rule '*/src' -> 'src/', producing 'src/briefcase/integrations/android_sdk.py' Matched path 'src/briefcase/integrations/java.py' to rule '*/src' -> 'src/', producing 'src/briefcase/integrations/java.py' Matched path 'src/briefcase/integrations/cookiecutter.py' to rule '*/src' -> 'src/', producing 'src/briefcase/integrations/cookiecutter.py' Matched path 'src/briefcase/integrations/docker.py' to rule '*/src' -> 'src/', producing 'src/briefcase/integrations/docker.py' Matched path 'src/briefcase/integrations/download.py' to rule '*/src' -> 'src/', producing 'src/briefcase/integrations/download.py' Matched path 'src/briefcase/integrations/flatpak.py' to rule '*/src' -> 'src/', producing 'src/briefcase/integrations/flatpak.py' Matched path 'src/briefcase/integrations/git.py' to rule '*/src' -> 'src/', producing 'src/briefcase/integrations/git.py' Matched path 'src/briefcase/integrations/linuxdeploy.py' to rule '*/src' -> 'src/', producing 'src/briefcase/integrations/linuxdeploy.py' Matched path 'src/briefcase/integrations/rcedit.py' to rule '*/src' -> 'src/', producing 'src/briefcase/integrations/rcedit.py' Matched path 'src/briefcase/integrations/subprocess.py' to rule '*/src' -> 'src/', producing 'src/briefcase/integrations/subprocess.py' Matched path 'src/briefcase/integrations/visualstudio.py' to rule '*/src' -> 'src/', producing 'src/briefcase/integrations/visualstudio.py' Matched path 'src/briefcase/integrations/wix.py' to rule '*/src' -> 'src/', producing 'src/briefcase/integrations/wix.py' Matched path 'src/briefcase/integrations/xcode.py' to rule '*/src' -> 'src/', producing 'src/briefcase/integrations/xcode.py' Matched path 'src/briefcase/integrations/base.py' to rule '*/src' -> 'src/', producing 'src/briefcase/integrations/base.py' Matched path 'src/briefcase/commands/create.py' to rule '*/src' -> 'src/', producing 'src/briefcase/commands/create.py' Matched path 'src/briefcase/commands/dev.py' to rule '*/src' -> 'src/', producing 'src/briefcase/commands/dev.py' Matched path 'src/briefcase/commands/new.py' to rule '*/src' -> 'src/', producing 'src/briefcase/commands/new.py' Matched path 'src/briefcase/commands/open.py' to rule '*/src' -> 'src/', producing 'src/briefcase/commands/open.py' Matched path 'src/briefcase/commands/package.py' to rule '*/src' -> 'src/', producing 'src/briefcase/commands/package.py' Matched path 'src/briefcase/commands/publish.py' to rule '*/src' -> 'src/', producing 'src/briefcase/commands/publish.py' Matched path 'src/briefcase/commands/run.py' to rule '*/src' -> 'src/', producing 'src/briefcase/commands/run.py' Matched path 'src/briefcase/commands/update.py' to rule '*/src' -> 'src/', producing 'src/briefcase/commands/update.py' Matched path 'src/briefcase/commands/upgrade.py' to rule '*/src' -> 'src/', producing 'src/briefcase/commands/upgrade.py' Matched path 'src/briefcase/cmdline.py' to rule '*/src' -> 'src/', producing 'src/briefcase/cmdline.py' Matched path 'src/briefcase/platforms/linux/__init__.py' to rule '*/src' -> 'src/', producing 'src/briefcase/platforms/linux/__init__.py' Matched path 'src/briefcase/platforms/linux/appimage.py' to rule '*/src' -> 'src/', producing 'src/briefcase/platforms/linux/appimage.py' Matched path 'src/briefcase/platforms/macOS/__init__.py' to rule '*/src' -> 'src/', producing 'src/briefcase/platforms/macOS/__init__.py' Matched path 'src/briefcase/platforms/macOS/app.py' to rule '*/src' -> 'src/', producing 'src/briefcase/platforms/macOS/app.py' Matched path 'src/briefcase/platforms/windows/__init__.py' to rule '*/src' -> 'src/', producing 'src/briefcase/platforms/windows/__init__.py' Matched path 'src/briefcase/platforms/windows/app.py' to rule '*/src' -> 'src/', producing 'src/briefcase/platforms/windows/app.py' Matched path 'src/briefcase/__main__.py' to rule '*/src' -> 'src/', producing 'src/briefcase/__main__.py' Matched path 'src/briefcase/platforms/android/__init__.py' to rule '*/src' -> 'src/', producing 'src/briefcase/platforms/android/__init__.py' Matched path 'src/briefcase/platforms/android/gradle.py' to rule '*/src' -> 'src/', producing 'src/briefcase/platforms/android/gradle.py' Matched path 'src/briefcase/platforms/iOS/__init__.py' to rule '*/src' -> 'src/', producing 'src/briefcase/platforms/iOS/__init__.py' Matched path 'src/briefcase/platforms/iOS/xcode.py' to rule '*/src' -> 'src/', producing 'src/briefcase/platforms/iOS/xcode.py' Matched path 'src/briefcase/platforms/linux/flatpak.py' to rule '*/src' -> 'src/', producing 'src/briefcase/platforms/linux/flatpak.py' Matched path 'src/briefcase/platforms/macOS/xcode.py' to rule '*/src' -> 'src/', producing 'src/briefcase/platforms/macOS/xcode.py' Matched path 'src/briefcase/platforms/web/__init__.py' to rule '*/src' -> 'src/', producing 'src/briefcase/platforms/web/__init__.py' Matched path 'src/briefcase/platforms/web/static.py' to rule '*/src' -> 'src/', producing 'src/briefcase/platforms/web/static.py' Matched path 'src/briefcase/platforms/windows/visualstudio.py' to rule '*/src' -> 'src/', producing 'src/briefcase/platforms/windows/visualstudio.py' Matched path 'src/briefcase/platforms/watchOS/xcode.py' to rule '*/src' -> 'src/', producing 'src/briefcase/platforms/watchOS/xcode.py' Matched path 'src/briefcase/platforms/watchOS/__init__.py' to rule '*/src' -> 'src/', producing 'src/briefcase/platforms/watchOS/__init__.py' Matched path 'src/briefcase/platforms/wearos/__init__.py' to rule '*/src' -> 'src/', producing 'src/briefcase/platforms/wearos/__init__.py' Matched path 'src/briefcase/platforms/wearos/gradle.py' to rule '*/src' -> 'src/', producing 'src/briefcase/platforms/wearos/gradle.py' Matched path 'src/briefcase/platforms/tvOS/xcode.py' to rule '*/src' -> 'src/', producing 'src/briefcase/platforms/tvOS/xcode.py' Matched path 'src/briefcase/platforms/tvOS/__init__.py' to rule '*/src' -> 'src/', producing 'src/briefcase/platforms/tvOS/__init__.py' Matched path 'src/briefcase/platforms/linux/deb.py' to rule '*/src' -> 'src/', producing 'src/briefcase/platforms/linux/deb.py' Matched path 'src/briefcase/platforms/linux/snap.py' to rule '*/src' -> 'src/', producing 'src/briefcase/platforms/linux/snap.py' Matched path 'src/briefcase/platforms/linux/rpm.py' to rule '*/src' -> 'src/', producing 'src/briefcase/platforms/linux/rpm.py' Combined data file .coverage.stirtoni.local.67214.589182 ```
python -m coverage report ``` (venv3.10) rkm@stirtoni briefcase % python -m coverage report Name Stmts Miss Branch BrPart Cover Missing ----------------------------------------------------------------------------------------- src/briefcase/commands/open.py 28 1 10 1 94.7% 17 src/briefcase/integrations/android_sdk.py 448 0 161 1 99.8% 58->61 src/briefcase/platforms/linux/appimage.py 115 1 22 0 99.3% 31 src/briefcase/platforms/linux/flatpak.py 98 1 16 0 99.1% 27 ----------------------------------------------------------------------------------------- TOTAL 4262 3 1187 2 99.9% 54 files skipped due to complete coverage. ```
nedbat commented 2 years ago

I'm marking this as fixed as of commit 7df8609f.

nedbat commented 2 years ago

But I think because of #1407, there will be larger changes to how file wildcards are interpreted.

nedbat commented 1 year ago

This is now released as part of coverage 6.6.0b1.

nedbat commented 1 year ago

This is now released as part of coverage 7.0.0b1.