/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to breezy/tests/test_workspace.py

  • Committer: Breezy landing bot
  • Author(s): Jelmer Vernooij
  • Date: 2020-08-23 01:15:41 UTC
  • mfrom: (7520.1.4 merge-3.1)
  • Revision ID: breezy.the.bot@gmail.com-20200823011541-nv0oh7nzaganx2qy
Merge lp:brz/3.1.

Merged from https://code.launchpad.net/~jelmer/brz/merge-3.1/+merge/389690

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
from . import (
20
20
    TestCaseWithTransport,
21
21
    multiply_scenarios,
 
22
    features,
22
23
    )
23
24
from .scenarios import load_tests_apply_scenarios
24
25
 
117
118
        vary_by_format(),
118
119
    )
119
120
 
 
121
    def setUp(self):
 
122
        super(WorkspaceTests, self).setUp()
 
123
        if self._use_inotify:
 
124
            self.requireFeature(features.pyinotify)
 
125
 
120
126
    def test_root_add(self):
121
127
        tree = self.make_branch_and_tree('.', format=self._format)
122
128
        with Workspace(tree, use_inotify=self._use_inotify) as ws: