Skip to content

Commit

Permalink
Revert "Reapply "adhoc""
Browse files Browse the repository at this point in the history
This reverts commit 6837eeb.
  • Loading branch information
whoschek committed Jan 17, 2025
1 parent 6837eeb commit f1bf037
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", "adhoc") # Consider toggling this when testing isolated code changes
test_mode = getenv_any("test_mode", "") # 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 @@ -587,14 +587,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_basic_replication_flat_simple_with_progress_reporter(self):
LocalTestCase(param=self.param).test_basic_replication_flat_simple_with_progress_reporter()
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_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 f1bf037

Please sign in to comment.