summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikolaus Rath <Nikolaus@rath.org>2016-02-23 15:44:51 -0800
committerNikolaus Rath <Nikolaus@rath.org>2018-11-06 19:40:48 +0000
commitf73ec80849455b7ac7606907714b6d786aa49987 (patch)
tree59de81bf9ade2dc4ea687c9be12c1360d2945176
parent97f60d5ba3e9fb3a101db609f0e6534d2c2aa914 (diff)
Skip tests requiring /proc
Origin: debian Forwarded: no Patch-Name: proc_mount.diff Gbp-Pq: Name proc_mount.diff
-rwxr-xr-xtests/t4_adm.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/t4_adm.py b/tests/t4_adm.py
index 005c91b..1d8ad7a 100755
--- a/tests/t4_adm.py
+++ b/tests/t4_adm.py
@@ -22,6 +22,7 @@ import tempfile
import unittest
import subprocess
import pytest
+import os
@pytest.mark.usefixtures('s3ql_cmd_argv', 'pass_reg_output')
class AdmTests(unittest.TestCase):
@@ -56,6 +57,7 @@ class AdmTests(unittest.TestCase):
return stdout
+ @unittest.skipUnless(os.path.exists('/proc/mounts'), '/proc/mounts not available')
def test_passphrase(self):
self.mkfs()