Commit beb577c8 authored by Andreas Tille's avatar Andreas Tille
Browse files

Exclude test that tries to switch from different environments and fails at...

Exclude test that tries to switch from different environments and fails at default one which is /usr (no write access)
parent abbd9363
Loading
Loading
Loading
Loading
+10 −0
Original line number Diff line number Diff line
@@ -37,3 +37,13 @@ Description: Other random fixes in test suite
     @pytest.mark.skipif(on_win, reason="unix-only test")
     def test_init_sh_user_unix(self):
         with tempdir() as conda_temp_prefix:
--- a/tests/test_activate.py
+++ b/tests/test_activate.py
@@ -1674,6 +1674,7 @@ class ShellWrapperIntegrationTests(TestC
 #        assert 'venusaur' in PATH4
         assert PATH4 == PATH2
 
+    @pytest.mark.skipif(True, reason="Debian: tries to switch from different environments and fails at default one which is /usr (no write access)")
     @pytest.mark.skipif(bash_unsupported(), reason=bash_unsupported_because())
     def test_bash_basic_integration(self):
         with InteractiveShell('bash') as shell: