You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The pattern on line 46 in Default.sublime-package/run_syntax_tests.py causes indentation tests from not being detected as tests to run for a given syntax.
It should be modified to something like
match = re.match('^.*SYNTAX TEST (?:reindent)? "(.*?)"', first_line)
if not match:
continue
Steps to reproduce
Open ST SAFE MODE
View Package Resource -> open PHP.sublime-syntax
Hit ctrl+b to run syntax tests
Expected behavior
All kinds of syntax tests, related to PHP are executed.
Actual behavior
Reindentation tests are skipped.
Environment
Build: 4102
Operating system and version: Windows 10
The text was updated successfully, but these errors were encountered:
We may need to modify it beyond just adding reindent since you can have other keywords after SYNTAX TEST like reindent-unindented, reindent-unchanged and then the various stuff added due to implementing symbol tests.
Description
The pattern on line 46 in Default.sublime-package/run_syntax_tests.py causes indentation tests from not being detected as tests to run for a given syntax.
It should be modified to something like
Steps to reproduce
Expected behavior
All kinds of syntax tests, related to PHP are executed.
Actual behavior
Reindentation tests are skipped.
Environment
The text was updated successfully, but these errors were encountered: