summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikolaus Rath <Nikolaus@rath.org>2016-02-23 15:44:51 -0800
committerNikolaus Rath <Nikolaus@rath.org>2019-10-20 12:01:04 +0100
commit4d0e16c11ff9d7a1f21f718c63022e0fd78aca09 (patch)
treea33e3b0d7f670f2c52be16af08e1b107d3810c96
parent1dcb7550abcfa3b47113cd9726b1a386dbc298e2 (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 a38e0fa..4a3f509 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('pass_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()