From ae3d4929248c0dc6857350330ae2585ed977a1c6 Mon Sep 17 00:00:00 2001 From: Rahul Gopinath Date: Sat, 25 Jun 2016 16:07:38 -0700 Subject: [PATCH] xonsh: Add XONSH_INTERACTIVE and remove replay test --- pkgs/shells/xonsh/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/shells/xonsh/default.nix b/pkgs/shells/xonsh/default.nix index 2f8c8026478..608fa02a126 100644 --- a/pkgs/shells/xonsh/default.nix +++ b/pkgs/shells/xonsh/default.nix @@ -27,10 +27,11 @@ python3Packages.buildPythonApplication rec { sed -ie 's|test_ipconfig|_test_ipconfig|g' tests/test_execer.py rm tests/test_main.py rm tests/test_man.py + rm tests/test_replay.py ''; checkPhase = '' - HOME=$TMPDIR nosetests -x + HOME=$TMPDIR XONSH_INTERACTIVE=0 nosetests -x ''; buildInputs = with python3Packages; [ glibcLocales nose pytest ];