diff options
author | Jose <jose@zeroc.com> | 2018-10-23 19:49:14 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2018-10-23 19:49:47 +0200 |
commit | a506fd7dc4b829714998e723fec68f03904cb5bb (patch) | |
tree | 41cef6f37edee25333f84cb1d860b3b18902c7a5 /scripts/Component.py | |
parent | Write typescript imports inside module declaration (diff) | |
download | ice-a506fd7dc4b829714998e723fec68f03904cb5bb.tar.bz2 ice-a506fd7dc4b829714998e723fec68f03904cb5bb.tar.xz ice-a506fd7dc4b829714998e723fec68f03904cb5bb.zip |
Fix filters for JavaScript/TypeScript testing
Diffstat (limited to 'scripts/Component.py')
-rw-r--r-- | scripts/Component.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/Component.py b/scripts/Component.py index c3b9e62a2f5..773e4d677c9 100644 --- a/scripts/Component.py +++ b/scripts/Component.py @@ -110,8 +110,8 @@ class Ice(Component): "Ice/logger", "Ice/properties"]) elif isinstance(mapping, JavaScriptMapping): - return ([], - ["ts/*"] + (["Slice/escape", "Ice/properties"] if config.typescript else [])) + return (["Ice/.*", "Glacier2/.*"], + (["Slice/escape", "Ice/properties"] if config.typescript else [])) return ([], []) def canRun(self, testId, mapping, current): |