-
-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix for #54 - allow regexes when matching expected message text #55
Changes from all commits
68d0c48
77bc3a0
ced9be4
5c9be30
95f6552
9811300
2019cb1
8defa6a
848282e
e814815
b6e684c
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,3 +4,5 @@ | |
__pycache__ | ||
dist/ | ||
build/ | ||
.pytest_cache/ | ||
venv/ |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
- case: rexex_but_not_turned_on | ||
main: | | ||
a = 'hello' | ||
reveal_type(a) # N: .*str.* | ||
|
||
- case: rexex_but_turned_off | ||
regex: no | ||
main: | | ||
a = 'hello' | ||
reveal_type(a) # N: .*str.* | ||
|
||
- case: regext_does_not_match | ||
regex: no | ||
main: | | ||
a = 'hello' | ||
reveal_type(a) # NR: .*banana.* |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
- case: expected_message_regex | ||
regex: yes | ||
main: | | ||
a = 1 | ||
b = 'hello' | ||
|
||
reveal_type(a) # N: Revealed type is "builtins.int" | ||
reveal_type(b) # N: .*str.* | ||
|
||
- case: expected_message_regex_with_out | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We also need a test without There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm not sure how to do negative tests - ie tests where we expect a failure. Are there any examples of this kind of test? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. For example, if I added this test: - case: should_fail
regex: no
main: |
a = 'hello'
reveal_type(a) # N: .*str.* I'd expect the test to fail - but that fails the build. Is there a way to express that I expect this to fail? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Nope, see #46 The easiest way for now is to add all failing tests into a single non-collectable file. And run it with There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can you approve me to run workflows? I have something which works locally, but I'd like to see if it works in CI. |
||
regex: yes | ||
main: | | ||
a = 'abc' | ||
reveal_type(a) | ||
out: | | ||
main:2: note: .*str.* | ||
|
||
- case: expected_single_message_regex | ||
regex: no | ||
main: | | ||
a = 'hello' | ||
reveal_type(a) # NR: .*str.* |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
- case: fail_if_message_does_not_match | ||
main: | | ||
a = 'hello' | ||
reveal_type(a) # N: Some other message | ||
|
||
- case: fail_if_message_from_outdoes_not_match | ||
regex: yes | ||
main: | | ||
a = 'abc' | ||
reveal_type(a) | ||
out: | | ||
main:2: note: Some other message |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's add one more test that should fail: with wrong regex. Something that does not match the output 👍