Skip to content

Commit

Permalink
adhoc
Browse files Browse the repository at this point in the history
Signed-off-by: Wolfgang Hoschek <[email protected]>
  • Loading branch information
whoschek committed Jan 17, 2025
1 parent c0bf4b8 commit 51c15e5
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions bzfs_tests/test_integrations.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@


def suite():
test_mode = getenv_any("test_mode", "") # Consider toggling this when testing isolated code changes
test_mode = getenv_any("test_mode", "adhoc") # Consider toggling this when testing isolated code changes
is_adhoc_test = test_mode == "adhoc" # run only a few isolated changes
is_functional_test = test_mode == "functional" # run most tests but only in a single local config combination
suite = unittest.TestSuite()
Expand Down Expand Up @@ -591,14 +591,14 @@ class AdhocTestCase(BZFSTestCase):
"""For testing isolated changes you are currently working on. You can temporarily change the list of tests here.
The current list is arbitrary and subject to change at any time."""

def test_zfs_recv_include_regex_with_duplicate_o_and_x_names(self):
LocalTestCase(param=self.param).test_zfs_recv_include_regex_with_duplicate_o_and_x_names()

def test_basic_replication_flat_simple(self):
FullRemoteTestCase(param=self.param).test_basic_replication_flat_simple()
def test_basic_replication_flat_simple_with_progress_reporter(self):
LocalTestCase(param=self.param).test_basic_replication_flat_simple_with_progress_reporter()

def test_zfs_set_via_recv_o(self):
FullRemoteTestCase(param=self.param).test_zfs_set_via_recv_o()
# def test_basic_replication_flat_simple(self):
# FullRemoteTestCase(param=self.param).test_basic_replication_flat_simple()
#
# def test_zfs_set_via_recv_o(self):
# FullRemoteTestCase(param=self.param).test_zfs_set_via_recv_o()


#############################################################################
Expand Down

0 comments on commit 51c15e5

Please sign in to comment.