forked from mirrors/nixpkgs
ytcc: fix checkPhase
Fixes: ERROR: Wrong expression passed to '-k': not get_channels \ and not play_video \ and not download_videos \ and not update_all \ and not add_channel_duplicate: at column 18: unexpected character "\"
This commit is contained in:
parent
9f6ecdcffa
commit
4d20dc5e87
|
@ -19,11 +19,11 @@ python3Packages.buildPythonApplication rec {
|
|||
|
||||
# Disable tests that touch network or shell out to commands
|
||||
checkPhase = ''
|
||||
pytest . -k 'not get_channels \
|
||||
pytest . -k "not get_channels \
|
||||
and not play_video \
|
||||
and not download_videos \
|
||||
and not update_all \
|
||||
and not add_channel_duplicate'
|
||||
and not add_channel_duplicate"
|
||||
'';
|
||||
|
||||
meta = {
|
||||
|
|
Loading…
Reference in a new issue