-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
16 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |