UnitTesting icon indicating copy to clipboard operation
UnitTesting copied to clipboard

Testing Sublime Text Packages

Results 48 UnitTesting issues
Sort by recently updated
recently updated
newest added

This is the package that I wrote: https://github.com/lucifiel1618/SublimeScarpetSyntax It worked fine and passed all tests in local `UnitTesting` runs. Things didn't go as well with github CI. You can see...

This is a common use case, supported both by unittest and pytest. E.g. in unittest I can run an individual test method with: ``` python3 -m unittest somelib.tests.test_process.TestProcess.test_kill ``` With...

Hello! I am trying to setup GH Actions and unfortunately I get this error: ``` .... 2022-12-15T23:36:46.3254891Z copy the package to sublime package directory 2022-12-15T23:36:46.3571658Z /home/runner/work/sysconf/sysconf 2022-12-15T23:36:46.6617191Z Installing UnitTesting from...

The Show Output Panel requires the name to be UnitTesting: "caption": "UnitTesting: Show Output Panel", "command": "show_panel", "args": {"panel": "output.UnitTesting"}

Starting on 2024-04-24, my GitHub Actions workflow has started to fail with this message: ``` Terminated Sublime Text Package Control: Installing 3 libraries... Package Control: The library "coverage" is not...

Include imported modules into coverage results by reloading plugins after coverage is started.

Followup to (really) resolve #273 Additional to yielding a condition() function, which returns True or False, this commit allows yielding an assertion method, which returns None on success, but raises...

I've been using this action to test `lsp_utils` dependency in: https://github.com/sublimelsp/lsp_utils/blob/f2a43fa2db4aeddbcf8ea1ce79ce95f143ddc696/.github/workflows/on-pull-request.yml#L18-L38 With PC 4 now it's no longer enough to link dependency in `Packages/*`. Now it needs to be linked...