-
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.
unattended-upgrades (2.12) unstable; urgency=medium
[ middlingphys ] * update japanese translation [ Chris Hofstaedtler ] * Install systemd-sleep part into /usr/lib (Closes: #1073745) [ Adam Chovanec ] * document missing option in the readme [ Michael Vogt ] * u-u: supress "DeprecationWarning" about fork() and multithreading * test: create fake etc/apt/preferences.d to silence test warnings * u-u: import "email.genators" package early as workaround * data/50unattended-upgrades.md5sum: Update for config file changes [ Kenyon Ralph ] * unattended-upgrade-shutdown: fix typo in documentation [ Wesley Schwengle ] * Correct examples for Debian backports (Closes: #940151) [ Marekjdj ] * Fixed small typo in '50unattended-upgrades' config files. [ Remus-Gabriel Chelu ] * [INTL:ro] Romanian debconf templates translation of unattended-upgrades (Closes: #1033760) [ Atila KOÇ ] * [INTL:tr] turkish debconf translation update (Closes: #1031852) [ Camaleón ] * [INTL:es] Spanish translation of the debconf template (Closes: #1029026) [dgit import package unattended-upgrades 2.12]
- Loading branch information
0 parents
commit 711ea55
Showing
201 changed files
with
19,244 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,32 @@ | ||
name: CI | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
tests: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: static checks | ||
run: | | ||
sudo apt update | ||
sudo apt build-dep -y ./ | ||
sudo apt install -y python3-pytest | ||
pytest-3 | ||
# ensure running each test standalone works | ||
for f in test/test_*.py; do | ||
if [ "$(basename $f)" = "test_base.py" ]; then | ||
continue | ||
fi | ||
pytest-3 $f | ||
done | ||
- name: setup | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install distro-info autopkgtest git-buildpackage | ||
- name: build source | ||
run: gbp buildpackage -us -uc -S -d -nc --git-ignore-branch --git-prebuild= | ||
- name: autopkgtest | ||
# skipping tests is ok, virt-null is used because lxd keeps failing | ||
# with: "Timed out waiting for container to boot" | ||
run: sudo autopkgtest -U ../build-area/*.dsc -- null || [ $? == 2 ] |
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,4 @@ | ||
Signature: 8a477f597d28d172789f06886806bc55 | ||
# This file is a cache directory tag created by pytest. | ||
# For information about cache directory tags, see: | ||
# https://bford.info/cachedir/spec.html |
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,8 @@ | ||
# pytest cache directory # | ||
|
||
This directory contains data from the pytest's cache plugin, | ||
which provides the `--lf` and `--ff` options, as well as the `cache` fixture. | ||
|
||
**Do not** commit this to version control. | ||
|
||
See [the docs](https://docs.pytest.org/en/stable/how-to/cache.html) for more information. |
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,93 @@ | ||
[ | ||
"test/test_against_real_archive.py::TestAgainstRealArchive::test_against_real_archive", | ||
"test/test_blacklisted_wrong_origin.py::TestBlacklistedWrongOrigin::test_if_origin_does_not_match_then_blacklist_is_not_checked", | ||
"test/test_clean.py::TestClean::test_clean", | ||
"test/test_conffile.py::DpkgConffileTestCase::test_dpkg_will_never_prompt", | ||
"test/test_conffile.py::DpkgConffileTestCase::test_no_dpkg_prompt_option", | ||
"test/test_conffile.py::DpkgConffileTestCase::test_regression_lp1061498", | ||
"test/test_conffile.py::TestConffilePrompt::test_prompt_on_deleted_modified_conffile", | ||
"test/test_conffile.py::TestConffilePrompt::test_will_not_prompt", | ||
"test/test_conffile.py::TestConffilePrompt::test_will_not_prompt_because_of_conffile_removal", | ||
"test/test_conffile.py::TestConffilePrompt::test_will_not_prompt_on_moves", | ||
"test/test_conffile.py::TestConffilePrompt::test_will_prompt", | ||
"test/test_conffile.py::TestConffilePrompt::test_will_prompt_for_new_conffile", | ||
"test/test_conffile.py::TestConffilePrompt::test_will_prompt_multiple", | ||
"test/test_conffile.py::TestConffilePrompt::test_will_prompt_on_moves", | ||
"test/test_conffile.py::TestConffilePrompt::test_with_many_entries", | ||
"test/test_conffile.py::TestConffilePrompt::test_xz_compression", | ||
"test/test_dev_release.py::TestDevRelease::test_auto_devrelease", | ||
"test/test_dev_release.py::TestDevRelease::test_do_not_run_on_devrelease", | ||
"test/test_dev_release.py::TestDevRelease::test_noauto_devrelease", | ||
"test/test_dev_release.py::TestDevRelease::test_norelease_devrelease", | ||
"test/test_flake8.py::TestFlake8Clean::test_flake8_clean", | ||
"test/test_in_chroot.py::TestUnattendedUpgrade::test_non_minimal_steps_upgrade", | ||
"test/test_in_chroot.py::TestUnattendedUpgrade::test_normal_upgrade", | ||
"test/test_in_chroot.py::TestUnattendedUpgrade::test_upgrade_on_shutdown_upgrade", | ||
"test/test_in_chroot.py::TestUnattendedUpgrade::test_whitelist_upgrade", | ||
"test/test_in_chroot.py::TestUnattendedUpgrade::test_whitelist_upgrade_strict", | ||
"test/test_log_install_progress.py::TestLogInstallProgress::test_log_installprogress", | ||
"test/test_logdir.py::TestLogdir::test_logdir", | ||
"test/test_logdir.py::TestLogdir::test_logdir_depreated", | ||
"test/test_mail.py::ExtractDpkgLogTestCase::test_get_dpkg_log_content", | ||
"test/test_mail.py::MailxTestCase::test_apt_listchanges", | ||
"test/test_mail.py::MailxTestCase::test_exception", | ||
"test/test_mail.py::MailxTestCase::test_summary_mail_blacklisted", | ||
"test/test_mail.py::MailxTestCase::test_summary_mail_blacklisted_only", | ||
"test/test_mail.py::MailxTestCase::test_summary_mail_from_address", | ||
"test/test_mail.py::MailxTestCase::test_summary_mail_no_reboot", | ||
"test/test_mail.py::MailxTestCase::test_summary_mail_only_on_error", | ||
"test/test_mail.py::MailxTestCase::test_summary_mail_reboot", | ||
"test/test_mail.py::SendmailAndMailxTestCase::test_apt_listchanges", | ||
"test/test_mail.py::SendmailAndMailxTestCase::test_exception", | ||
"test/test_mail.py::SendmailAndMailxTestCase::test_mail_quoted_printable", | ||
"test/test_mail.py::SendmailAndMailxTestCase::test_summary_mail_blacklisted", | ||
"test/test_mail.py::SendmailAndMailxTestCase::test_summary_mail_blacklisted_only", | ||
"test/test_mail.py::SendmailAndMailxTestCase::test_summary_mail_from_address", | ||
"test/test_mail.py::SendmailAndMailxTestCase::test_summary_mail_no_reboot", | ||
"test/test_mail.py::SendmailAndMailxTestCase::test_summary_mail_only_on_error", | ||
"test/test_mail.py::SendmailAndMailxTestCase::test_summary_mail_reboot", | ||
"test/test_mail.py::SendmailTestCase::test_apt_listchanges", | ||
"test/test_mail.py::SendmailTestCase::test_exception", | ||
"test/test_mail.py::SendmailTestCase::test_mail_quoted_printable", | ||
"test/test_mail.py::SendmailTestCase::test_summary_mail_blacklisted", | ||
"test/test_mail.py::SendmailTestCase::test_summary_mail_blacklisted_only", | ||
"test/test_mail.py::SendmailTestCase::test_summary_mail_from_address", | ||
"test/test_mail.py::SendmailTestCase::test_summary_mail_no_reboot", | ||
"test/test_mail.py::SendmailTestCase::test_summary_mail_only_on_error", | ||
"test/test_mail.py::SendmailTestCase::test_summary_mail_reboot", | ||
"test/test_minimal_partitions.py::TestMinimalPartitions::test_upgrade_in_minimal_steps", | ||
"test/test_motd.py::MotdTestCase::test_packages_kept", | ||
"test/test_on_battery.py::TestOnBattery::test_on_battery", | ||
"test/test_origin_pattern.py::TestOriginPatern::test_blacklist", | ||
"test/test_origin_pattern.py::TestOriginPatern::test_compatiblity", | ||
"test/test_origin_pattern.py::TestOriginPatern::test_escaped_colon", | ||
"test/test_origin_pattern.py::TestOriginPatern::test_get_allowed_origins_legacy", | ||
"test/test_origin_pattern.py::TestOriginPatern::test_macro", | ||
"test/test_origin_pattern.py::TestOriginPatern::test_match_whitelist_from_conffile", | ||
"test/test_origin_pattern.py::TestOriginPatern::test_match_whitelist_string", | ||
"test/test_origin_pattern.py::TestOriginPatern::test_match_whitelist_wildcard", | ||
"test/test_origin_pattern.py::TestOriginPatern::test_unkown_matcher", | ||
"test/test_origin_pattern.py::TestOriginPatern::test_whitelist_with_strict_whitelisting", | ||
"test/test_patch_days.py::TestUpdateDays::test_update_days_by_name", | ||
"test/test_patch_days.py::TestUpdateDays::test_update_days_by_number", | ||
"test/test_patch_days.py::TestUpdateDays::test_update_days_no_patch_days_always_runs_uu", | ||
"test/test_pep484.py::PackagePep484TestCase::test_pep484_clean", | ||
"test/test_plugins.py::TestPlugins::test_plugin_data_postrun", | ||
"test/test_plugins.py::TestPlugins::test_plugin_happy", | ||
"test/test_reboot.py::RebootTestCase::test_logged_in_users", | ||
"test/test_reboot.py::RebootTestCase::test_no_reboot_done_because_no_option", | ||
"test/test_reboot.py::RebootTestCase::test_no_reboot_done_because_no_stamp", | ||
"test/test_reboot.py::RebootTestCase::test_reboot_now", | ||
"test/test_reboot.py::RebootTestCase::test_reboot_time", | ||
"test/test_reboot.py::RebootTestCase::test_reboot_withoutusers", | ||
"test/test_reboot.py::RebootTestCase::test_reboot_withusers", | ||
"test/test_regression.py::TestRegression::test_do_install_fail_unicode_write", | ||
"test/test_remove_unused.py::TestRemoveUnused::test_remove_unused_dependencies", | ||
"test/test_remove_unused.py::TestRemoveUnused::test_remove_unused_dependencies_new_unused_only", | ||
"test/test_remove_unused.py::TestRemoveUnused::test_remove_valid", | ||
"test/test_rewind.py::TestRewindCache::test_rewind_cache", | ||
"test/test_substitute.py::TestSubstitute::testSubstitute", | ||
"test/test_substitute.py::TestSubstitute::test_get_allowed_origins_with_substitute", | ||
"test/test_unavailable_candidate.py::TestUnavailableCandidate::test_if_pkg_candidate_is_unavailable_then_pkg_is_not_considered", | ||
"test/test_untrusted.py::TestUntrusted::test_untrusted_check_without_conffile_check" | ||
] |
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 @@ | ||
[] |
Oops, something went wrong.