mirror of
https://github.com/borgbackup/borg.git
synced 2026-03-25 11:56:00 -04:00
move requires_hardlinks upwards
This commit is contained in:
parent
1acb4510c1
commit
a940ec76bc
1 changed files with 2 additions and 2 deletions
|
|
@ -382,6 +382,8 @@ class ArchiverTestCaseBase(BaseTestCase):
|
|||
|
||||
|
||||
class ArchiverTestCase(ArchiverTestCaseBase):
|
||||
requires_hardlinks = pytest.mark.skipif(not are_hardlinks_supported(), reason='hardlinks not supported')
|
||||
|
||||
def test_basic_functionality(self):
|
||||
have_root = self.create_test_files()
|
||||
# fork required to test show-rc output
|
||||
|
|
@ -812,8 +814,6 @@ class ArchiverTestCase(ArchiverTestCaseBase):
|
|||
self.cmd('init', '--encryption=repokey', self.repository_location)
|
||||
self.cmd('create', self.repository_location + '::test', 'input')
|
||||
|
||||
requires_hardlinks = pytest.mark.skipif(not are_hardlinks_supported(), reason='hardlinks not supported')
|
||||
|
||||
@requires_hardlinks
|
||||
@unittest.skipUnless(has_llfuse, 'llfuse not installed')
|
||||
def test_fuse_mount_hardlinks(self):
|
||||
|
|
|
|||
Loading…
Reference in a new issue