Skip to content

Commit

Permalink
Create filters
Browse files Browse the repository at this point in the history
  • Loading branch information
WilsonNet committed Dec 24, 2024
1 parent 6e2f30d commit 8f477b4
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions docs/filters.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# How filters should work

They should work as OR in the same category and AND between two different categories

Lets suppose we have a filter that is `"Boots Status" == 'MISS' or 'PASS'`
and a filter `"Arch" == 'arm'`

It means that:

| Status | Arch | Should Show |
| ------- | ------ | ------------ |
| 'PASS' | 'arm' | True |
| 'PASS' | 'x86' | False |
| 'FAIL' | 'arm' | False |
| 'MISS' | 'arm' | True |
| 'MISS' | 'x86' | False |

0 comments on commit 8f477b4

Please sign in to comment.