GitXplorerGitXplorer
l

autopkgtest-diff

public
0 stars
0 forks
0 issues

Commits

List of commits on branch master.
Unverified
954dd23738735a73ce51018adee40fd594794663

Handle unknown autopkgtest exit code

llucaskanashiro committed 9 months ago
Unverified
43b3b6f64c0cfb21c55b143ecf311504ecd11058

Add a workaround for test_id in the old format

llucaskanashiro committed 9 months ago
Unverified
54426675ac3c5137f3879758228c86796d61b9f4

No need to pass a input file, grab data from the package team mapping

llucaskanashiro committed 9 months ago
Unverified
351a03ae657250d76b79bbc65eea853afc69f60f

Provide proper results instead of the exit code

llucaskanashiro committed 9 months ago
Unverified
d43e05e279d7e0176bafb52b678af521ef5a7fad

Add test log urls to the output

llucaskanashiro committed 9 months ago
Unverified
a22249ec2d8b149b6f8cec5ad17eb7d62f0631fa

Make some general improvements

llucaskanashiro committed 9 months ago

README

The README file for this repository.

Compare autopkgtest results

This script compares the autopkgtest results until a given date and the latest run for a set of packages. Once can run the script with the command below:

$ python3 diff_autopkgtest_results.py 2024-02-28 ubuntu-server

The reference date passed to the script must follow this format: YYYY-MM-DD.

The last parameter is the name of the packaging team present here.

As result, 3 files containing the output of the analysis:

  • no_news_<YYYY-MM-DD>_<packaging_team>.json: packages that did not change the status. The package was passing before the reference date and now it keeps passing. Or the package was failing and now it keeps failing.
  • good_news_<YYYY-MM-DD>_<packaging_team>.json: packages that tests were failing before the reference date and now they are passing.
  • bad_news_<YYYY-MM-DD>_<packaging_team>.json: packages that tests were passing before the reference date and now they are failing.

Some packages might not have data to be analyzed, maybe there is no data in the SQLite database file, or no test run before or after the reference date.