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 "\"
gstqt5
Orivej Desh 2020-12-07 01:02:48 +00:00
parent 9f6ecdcffa
commit 4d20dc5e87
1 changed files with 2 additions and 2 deletions

View File

@ -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 = {