mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-18 03:34:58 +00:00
Merge pull request #64777 from jonringer/ytcc-enable-tests
ytcc: enable tests
This commit is contained in:
commit
f4ed4b8e4d
@ -11,10 +11,20 @@ python3Packages.buildPythonApplication rec {
|
||||
sha256 = "080p145j5pg8db88kb0y3x1pfc3v4aj3w68pdihlmi68dhjdr7i7";
|
||||
};
|
||||
|
||||
doCheck = false; # try to access /homeless-shelter
|
||||
nativeBuildInputs = [ gettext ];
|
||||
|
||||
propagatedBuildInputs = with python3Packages; [ feedparser lxml sqlalchemy youtube-dl ];
|
||||
|
||||
nativeBuildInputs = [ gettext ];
|
||||
checkInputs = with python3Packages; [ nose pytest ];
|
||||
|
||||
# Disable tests that touch network or shell out to commands
|
||||
checkPhase = ''
|
||||
pytest . -k 'not get_channels \
|
||||
and not play_video \
|
||||
and not download_videos \
|
||||
and not update_all \
|
||||
and not add_channel_duplicate'
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "Command Line tool to keep track of your favourite YouTube channels without signing up for a Google account";
|
||||
|
Loading…
Reference in New Issue
Block a user