Skip to content

Commit 0656888

Browse files
author
deathaxe
authored
Drop internal test runner (#1679)
This commit removes obsolete internal `package_control_tests` command in favor of UnitTesting, which can be used to run them.
1 parent ff04d91 commit 0656888

5 files changed

+0
-75
lines changed

Default.sublime-commands

-4
Original file line numberDiff line numberDiff line change
@@ -122,9 +122,5 @@
122122
"file": "$packages/User/Package Control.user-ca-bundle",
123123
"semi_transient": true
124124
},
125-
},
126-
{
127-
"caption": "Package Control: Tests",
128-
"command": "package_control_tests"
129125
}
130126
]

Package Control.sublime-settings

-3
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,4 @@
286286
]
287287
}
288288
},
289-
290-
// Enable the ability to run the tests - this is only for development
291-
"enable_tests": false
292289
}

package_control/commands/__init__.py

-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
from .package_control_enable_debug_mode_command import PackageControlEnableDebugModeCommand
1818
from .package_control_insert_command import PackageControlInsertCommand
1919
from .package_control_message_command import PackageControlMessageCommand
20-
from .package_control_tests_command import PackageControlTestsCommand
2120
from .remove_channel_command import RemoveChannelCommand
2221
from .remove_package_command import RemovePackageCommand
2322
from .remove_packages_command import RemovePackagesCommand
@@ -50,7 +49,6 @@
5049
'PackageControlEnableDebugModeCommand',
5150
'PackageControlInsertCommand',
5251
'PackageControlMessageCommand',
53-
'PackageControlTestsCommand',
5452
'RemoveChannelCommand',
5553
'RemovePackageCommand',
5654
'RemovePackagesCommand',

package_control/commands/package_control_tests_command.py

-65
This file was deleted.

plugin.py

-1
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,6 @@
236236
'.commands.package_control_enable_debug_mode_command',
237237
'.commands.package_control_insert_command',
238238
'.commands.package_control_message_command',
239-
'.commands.package_control_tests_command',
240239
'.commands',
241240

242241
'.automatic_upgrader',

0 commit comments

Comments
 (0)