Skip to content

Commit

Permalink
Create filters
Browse files Browse the repository at this point in the history
  • Loading branch information
WilsonNet authored Dec 24, 2024
1 parent 6e2f30d commit d3ff5b5
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions docs/filters
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# 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' and 'PASS'`
`"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 d3ff5b5

Please sign in to comment.