Skip to content

Commit

Permalink
tests: Add missing feature guards
Browse files Browse the repository at this point in the history
  • Loading branch information
jngrad committed Dec 17, 2020
1 parent 2518718 commit 74b1101
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion testsuite/python/virtual_sites_tracers.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@
from virtual_sites_tracers_common import VirtualSitesTracersCommon


@utx.skipIfMissingFeatures(['VIRTUAL_SITES_INERTIALESS_TRACERS'])
@utx.skipIfMissingFeatures(
['VIRTUAL_SITES_INERTIALESS_TRACERS', 'LB_BOUNDARIES'])
class VirtualSitesTracers(ut.TestCase, VirtualSitesTracersCommon):

def setUp(self):
Expand Down
3 changes: 2 additions & 1 deletion testsuite/python/virtual_sites_tracers_gpu.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@


@utx.skipIfMissingGPU()
@utx.skipIfMissingFeatures(['VIRTUAL_SITES_INERTIALESS_TRACERS'])
@utx.skipIfMissingFeatures(
['VIRTUAL_SITES_INERTIALESS_TRACERS', 'LB_BOUNDARIES'])
class VirtualSitesTracers(ut.TestCase, VirtualSitesTracersCommon):

def setUp(self):
Expand Down

0 comments on commit 74b1101

Please sign in to comment.