Skip to content
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

Drop internal test runner #1679

Merged
merged 1 commit into from
May 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions Default.sublime-commands
Original file line number Diff line number Diff line change
Expand Up @@ -122,9 +122,5 @@
"file": "$packages/User/Package Control.user-ca-bundle",
"semi_transient": true
},
},
{
"caption": "Package Control: Tests",
"command": "package_control_tests"
}
]
3 changes: 0 additions & 3 deletions Package Control.sublime-settings
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,4 @@
]
}
},

// Enable the ability to run the tests - this is only for development
"enable_tests": false
}
2 changes: 0 additions & 2 deletions package_control/commands/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
from .package_control_enable_debug_mode_command import PackageControlEnableDebugModeCommand
from .package_control_insert_command import PackageControlInsertCommand
from .package_control_message_command import PackageControlMessageCommand
from .package_control_tests_command import PackageControlTestsCommand
from .remove_channel_command import RemoveChannelCommand
from .remove_package_command import RemovePackageCommand
from .remove_packages_command import RemovePackagesCommand
Expand Down Expand Up @@ -50,7 +49,6 @@
'PackageControlEnableDebugModeCommand',
'PackageControlInsertCommand',
'PackageControlMessageCommand',
'PackageControlTestsCommand',
'RemoveChannelCommand',
'RemovePackageCommand',
'RemovePackagesCommand',
Expand Down
65 changes: 0 additions & 65 deletions package_control/commands/package_control_tests_command.py

This file was deleted.

1 change: 0 additions & 1 deletion plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,6 @@
'.commands.package_control_enable_debug_mode_command',
'.commands.package_control_insert_command',
'.commands.package_control_message_command',
'.commands.package_control_tests_command',
'.commands',

'.automatic_upgrader',
Expand Down
Loading