aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOrivej Desh <orivej@gmx.fr>2020-12-07 01:02:48 +0000
committerOrivej Desh <orivej@gmx.fr>2020-12-07 01:03:55 +0000
commit4d20dc5e87a79e9367b577b9263515932c87f513 (patch)
tree66986799071fe36ada7ec4c93c89948fedce4a61
parent9f6ecdcffa800719ee900c5469c689de8cfbb52d (diff)
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 "\"
-rw-r--r--pkgs/tools/networking/ytcc/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/networking/ytcc/default.nix b/pkgs/tools/networking/ytcc/default.nix
index dc38648c369c..2d474159359f 100644
--- a/pkgs/tools/networking/ytcc/default.nix
+++ b/pkgs/tools/networking/ytcc/default.nix
@@ -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 = {