In the JUnit Run configuration set the Test kind to Pattern, specify the following regular expression as the pattern:
^(?!.*IT$).*$
It matches against the class name, so you don’t need to match .java extension. Regular expression will not match if the class name ends with IT using the negative lookahead.
