All Projects → pkgcore → pkgcheck

pkgcore / pkgcheck

Licence: BSD-3-Clause License
pkgcore-based QA utility for ebuild repos

Programming Languages

c
50402 projects - #5 most used programming language
python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to pkgcheck

pkgcore
a framework for package management
Stars: ✭ 91 (+378.95%)
Mutual labels:  gentoo, ebuilds
HomeAssistantRepository
🏡 Home Assistant on Gentoo Linux.
Stars: ✭ 26 (+36.84%)
Mutual labels:  gentoo, ebuilds
games-overlay
gentoo overlay containing games ebuilds only
Stars: ✭ 15 (-21.05%)
Mutual labels:  gentoo, ebuilds
os-xtoo
The Java and Enlightenment ebuild repository
Stars: ✭ 17 (-10.53%)
Mutual labels:  gentoo, ebuilds
clx
clx overlay
Stars: ✭ 12 (-36.84%)
Mutual labels:  gentoo, ebuilds
portage-utils
[MIRROR] Small and fast Portage helper tools written in C
Stars: ✭ 25 (+31.58%)
Mutual labels:  gentoo
keras qa based question selection
Keras-Based LSTM Conv model for Question Selection
Stars: ✭ 24 (+26.32%)
Mutual labels:  qa
osmcha
Python package to detect suspicious OSM changesets
Stars: ✭ 33 (+73.68%)
Mutual labels:  qa
audio-overlay
Gentoo overlay for music production
Stars: ✭ 33 (+73.68%)
Mutual labels:  gentoo
gentoo-install
A gentoo installer with a TUI interface that supports systemd and OpenRC, EFI and BIOS, as well as variable disk layouts using ext4, zfs, btrfs, luks and mdraid.
Stars: ✭ 92 (+384.21%)
Mutual labels:  gentoo
request-baskets
HTTP requests collector to test webhooks, notifications, REST clients and more ...
Stars: ✭ 149 (+684.21%)
Mutual labels:  qa
go-overlay
This Portage overlay is for Go related ebuilds.
Stars: ✭ 33 (+73.68%)
Mutual labels:  gentoo
unity-asset-validator
The Asset Validator is an editor tool for validating assets in the project and in scenes.
Stars: ✭ 30 (+57.89%)
Mutual labels:  qa
srcinv
source code audit tool
Stars: ✭ 45 (+136.84%)
Mutual labels:  qa
efi-install-guide-source
The MediaWiki source pages for "Sakaki's EFI Install Guide" (as hosted on the Gentoo wiki)
Stars: ✭ 19 (+0%)
Mutual labels:  gentoo
Python-Test-Automation-Framework
Test Automation Framework using selenium and Python
Stars: ✭ 41 (+115.79%)
Mutual labels:  qa
hmg
💝 My personal Gentoo/Linux configuration backup files
Stars: ✭ 16 (-15.79%)
Mutual labels:  gentoo
qamd
QAMyData, a data quality assurance tool for SPSS, STATA, SAS and CSV files.
Stars: ✭ 16 (-15.79%)
Mutual labels:  qa
Chinese-Psychological-QA-DataSet
中文心理问答数据集
Stars: ✭ 23 (+21.05%)
Mutual labels:  qa
Giveme5W
Extraction of the five journalistic W-questions (5W) from news articles
Stars: ✭ 16 (-15.79%)
Mutual labels:  qa

pypi test coverage

pkgcheck

Dependencies

pkgcheck is developed alongside pkgcore and snakeoil. Running pkgcheck from git will often require both pkgcore and snakeoil from git as well.

For releases, see the required runtime dependencies.

There are also several optional runtime dependencies that add or extend check support in various ways if found on the host system including the following:

  • git: supports historical queries for git-based repos and commit-related checks
  • requests: supports various network-related checks
  • Gentoo-PerlMod-Version: supports Perl package version checks

Installing

Installing latest pypi release:

pip install pkgcheck

Installing from git:

pip install https://github.com/pkgcore/pkgcheck/archive/master.tar.gz

Installing from a tarball:

python setup.py install

Usage

Most users will use pkgcheck on the command line via pkgcheck scan to target ebuild repos. See the docs or the man page for more information on running pkgcheck.

It's also possible to run pkgcheck natively from python. For example, to output the results for a given ebuild repo:

from pkgcheck import scan

for result in scan(['/path/to/ebuild/repo']):
    print(result)

This allows third party tools written in python to leverage pkgcheck's scanning functionality for purposes such as CI or VCS commit support.

Tests

A standalone test runner is integrated in setup.py; to run, just execute:

python setup.py test

In addition, a tox config is provided so the testsuite can be run in a virtualenv setup against all supported python versions. To run tests for all environments just execute tox in the root directory of a repo or unpacked tarball. Otherwise, for a specific python version execute something similar to the following:

tox -e py39
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].