Changes between Version 3 and Version 4 of Ticket #33454, comment 4


Ignore:
Timestamp:
Jan 28, 2022, 5:04:12 AM (2 years ago)
Author:
Thorben Luepkes

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #33454, comment 4

    v3 v4  
    3333    """Custom test runner which excludes market-specific tests by default if no tests are specified."""
    3434    def build_suite(self, test_labels=None, extra_tests=None, **kwargs):
    35         if MARKET_BE not in self.tags and not test_labels:
     35        if MARKET_B not in self.tags and not test_labels:
    3636            self.exclude_tags.add(MARKET_B)
    3737        return super().build_suite(test_labels, extra_tests, **kwargs)
Back to Top