Skip to content

Commit

Permalink
Removes filters excluding OCCA from certain tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
kris-rowe committed Dec 1, 2022
1 parent f75f425 commit 1760b84
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tests/junit.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,13 +61,13 @@ def contains_any(resource, substrings):

def skip_rule(test, resource):
return any((
test.startswith('t4') and contains_any(resource, ['occa']),
test.startswith('t5') and contains_any(resource, ['occa']),
test.startswith('ex') and contains_any(resource, ['occa']),
# test.startswith('t4') and contains_any(resource, ['occa']),
# test.startswith('t5') and contains_any(resource, ['occa']),
# test.startswith('ex') and contains_any(resource, ['occa']),
test.startswith('mfem') and contains_any(resource, ['occa']),
test.startswith('nek') and contains_any(resource, ['occa']),
test.startswith('petsc-') and contains_any(resource, ['occa']),
test.startswith('fluids-') and contains_any(resource, ['occa']),
# test.startswith('petsc-') and contains_any(resource, ['occa']),
# test.startswith('fluids-') and contains_any(resource, ['occa']),
test.startswith('solids-') and contains_any(resource, ['occa']),
test.startswith('t318') and contains_any(resource, ['/gpu/cuda/ref']),
test.startswith('t506') and contains_any(resource, ['/gpu/cuda/shared']),
Expand Down

0 comments on commit 1760b84

Please sign in to comment.