Skip to content

Commit

Permalink
Revert "Reapply "only run test_basic_replication_flat_simple_with_tai…
Browse files Browse the repository at this point in the history
…ler_isatty_and_delay""

This reverts commit 75a39ae.
  • Loading branch information
whoschek committed Jan 16, 2025
1 parent 75a39ae commit 69961bd
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_tailer_isatty_and_delay(self):
LocalTestCase(param=self.param).test_basic_replication_flat_simple_with_tailer_isatty_and_delay()
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 69961bd

Please sign in to comment.