summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorRahul Gopinath <rahul@gopinath.org>2016-06-25 16:07:38 -0700
committerRahul Gopinath <rahul@gopinath.org>2016-06-25 17:50:27 -0700
commitae3d4929248c0dc6857350330ae2585ed977a1c6 (patch)
treee7c2c215f7768a728ba28a302be717c51e1a1eb2 /pkgs
parentf3fc9f1eb01872b98f0a4f86c8f4d9447d085011 (diff)
downloadnixlib-ae3d4929248c0dc6857350330ae2585ed977a1c6.tar
nixlib-ae3d4929248c0dc6857350330ae2585ed977a1c6.tar.gz
nixlib-ae3d4929248c0dc6857350330ae2585ed977a1c6.tar.bz2
nixlib-ae3d4929248c0dc6857350330ae2585ed977a1c6.tar.lz
nixlib-ae3d4929248c0dc6857350330ae2585ed977a1c6.tar.xz
nixlib-ae3d4929248c0dc6857350330ae2585ed977a1c6.tar.zst
nixlib-ae3d4929248c0dc6857350330ae2585ed977a1c6.zip
xonsh: Add XONSH_INTERACTIVE and remove replay test
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/shells/xonsh/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/shells/xonsh/default.nix b/pkgs/shells/xonsh/default.nix
index 2f8c80264786..608fa02a126e 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 ];