The utility for building of AlmaLinux distributions (repos, ISO images).
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
Go to file
Haibo Lin 3c72755814 Use pytest instead of nosetests
Nose has been in maintenance mode for the past several years
and pytest is a good replacement.

Other changes:
- Replace deprecated assertRegexpMatches with assertRegex
- Replace deprecated assertRaisesRegexp with assertRaisesRegex
- Replace deprecated SafeConfigParser with ConfigParser
- Force reinstall pytest and mock in tox virtualenv. This is because
  the globally installed packages may not work as expected(occured in
  jenkins job).

JIRA: RHELCMP-1619
Signed-off-by: Haibo Lin <hlin@redhat.com>
3 years ago
contrib/yum-dnf-compare gather: Only parse pungi log once 6 years ago
doc Use pytest instead of nosetests 3 years ago
pungi Make sure old_repo_dir for reusing exists 3 years ago
pungi_utils Fix typos 3 years ago
share Allow setting <kojitag/> in <modules/> in variants.xml to get the modules from this Koji tag. 6 years ago
tests Use pytest instead of nosetests 3 years ago
.gitignore Run flake8 and black via tox 4 years ago
AUTHORS extra-files: Write a metadata file enumerating extra files 7 years ago
COPYING Remove FSF address from comments 7 years ago
GPL Update GPL to latest version from https://www.gnu.org/licenses/gpl-2.0.txt 8 years ago
MANIFEST.in Include all test fixtures in source tarball 5 years ago
Makefile Use pytest instead of nosetests 3 years ago
README.md README: add link to documentation 5 years ago
TODO Initial code merge for Pungi 4.0. 9 years ago
git-changelog git-changelog: Fix running on Python 3 4 years ago
pungi.spec Use pytest instead of nosetests 3 years ago
setup.py Use pytest instead of nosetests 3 years ago
tox.ini Use pytest instead of nosetests 3 years ago

README.md

Pungi

Pungi is a distribution compose tool.

Composes are release snapshots that contain release deliverables such as:

  • installation trees
    • RPMs
    • repodata
    • comps
  • (bootable) ISOs
  • kickstart trees
    • anaconda images
    • images for PXE boot

Tool overview

Pungi consists of multiple separate executables backed by a common library.

The main entry-point is the pungi-koji script. It loads the compose configuration and kicks off the process. Composing itself is done in phases. Each phase is responsible for generating some artifacts on disk and updating the compose object that is threaded through all the phases.

Pungi itself does not actually do that much. Most of the actual work is delegated to separate executables. Pungi just makes sure that all the commands are invoked in the appropriate order and with correct arguments. It also moves the artifacts to correct locations.