Update src/_pytest/mark/expression.py

Co-authored-by: Ran Benita <ran@unusedvar.com>
This commit is contained in:
Alexander King 2021-10-29 10:27:17 -04:00 committed by GitHub
parent 12cafec6fb
commit 13fd340924
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ expression: expr? EOF
expr: and_expr ('or' and_expr)*
and_expr: not_expr ('and' not_expr)*
not_expr: 'not' not_expr | '(' expr ')' | ident
ident: (\w|:|\+|-|\.|\[|\]|\\|\/)+
ident: (\w|:|\+|-|\.|\[|\]|\\|/)+
The semantics are: