forked from Nuitka/Nuitka
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Spelling issues
- Loading branch information
Showing
6 changed files
with
96 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
name: Nuitka tests | ||
|
||
# makes little sense, spell-checker: disable | ||
on: | ||
pull_request: | ||
branches: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
#!/usr/bin/python | ||
# Copyright 2021, Kay Hayen, mailto:[email protected] | ||
# | ||
# Part of "Nuitka", an optimizing Python compiler that is compatible and | ||
# integrates with CPython, but also works on its own. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# | ||
|
||
import os | ||
import shutil | ||
import subprocess | ||
import sys | ||
|
||
|
||
def main(): | ||
|
||
# Set the stage. | ||
os.chdir(os.path.dirname(__file__)) | ||
shutil.rmtree("coverage", ignore_errors=True) | ||
|
||
print("Fetching coverage files:") | ||
|
||
subprocess.call( | ||
["rsync", "-az", "--delete", "%s/" % os.environ["COVERAGE_DIR"], "coverage/"] | ||
) | ||
|
||
print("Combining coverage files:") | ||
os.chdir("coverage") | ||
|
||
print("Detect coverage file roots:") | ||
# Now detect where the files were collected from: | ||
|
||
paths = [os.path.abspath(os.path.join(os.curdir, "..", ".."))] | ||
|
||
for filename in os.listdir("."): | ||
if not filename.startswith("meta.coverage"): | ||
continue | ||
|
||
values = {} | ||
exec(open(filename).read(), values) | ||
if "__builtins__" in values: | ||
del values["__builtins__"] | ||
|
||
paths.append(values["NUITKA_SOURCE_DIR"]) | ||
|
||
coverage_path = os.path.abspath(".coveragerc") | ||
|
||
with open(coverage_path, "w") as coverage_rcfile: | ||
coverage_rcfile.write("[paths]\n") | ||
coverage_rcfile.write("source = \n") | ||
|
||
for path in paths: | ||
coverage_rcfile.write(" " + path + "\n") | ||
|
||
subprocess.call( | ||
[sys.executable, "-m", "coverage", "combine", "--rcfile", coverage_path] | ||
) | ||
|
||
assert os.path.exists(coverage_path) | ||
|
||
subprocess.call( | ||
[sys.executable, "-m", "coverage", "html", "--rcfile", coverage_path] | ||
) | ||
|
||
# Clean up after ourselves again. | ||
# shutil.rmtree("coverage", ignore_errors = True) | ||
|
||
|
||
if __name__ == "__main__": | ||
main() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters