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

I'm planning to rely completely on asyncio for ST4 and LSP, and I want to be able to run tests with asyncio. I'm envisioning this possibility: ```python from my_package import...

I had imported another test file, in one (main) test file like this: ```python from .text_extraction_unit_tests import PrefixStrippingViewUnitTests wrap_plus_module = sys.modules["Wrap Plus.wrap_plus"] def run_unit_tests(unit_tests_to_run=[]): runner = unittest.TextTestRunner() classes = \...

May be this is what is helping https://github.com/SublimeText/UnitTesting/issues/159 (travis.sh and run_tests.py reported success when it a was failure) to exists? https://github.com/SublimeText/UnitTesting/blob/d94dcb0dd1e209490acf1657c716becb71f5006c/.travis.yml#L33-L35 On the headers of the files, it is already...

Currently, UnitTesting cannot run tests that are inside installed packages. This would allow package authors to verify that their tests run when the package is installed. End users could also...

I just installed UnitTesting last night and am really happy with it so far. In my Python code outside of Sublime plugins, I like to use other frameworks that build...

Here you can see everything passing for the others, including Sublime Text on Mac OS: 1. https://travis-ci.org/evandrocoan/DebugTools/builds/440899598 1. ![image](https://user-images.githubusercontent.com/5332158/46900939-e6e98700-ce80-11e8-8f7d-0a1b1e01a7ce.png) I had added `echo "first6 ls"; ls "/home/travis/.config/sublime-text-3/Packages"` on .travis.yml, and...

This is a build result without specifying the `include` setting with `.coveragerc`: 1. https://ci.appveyor.com/project/evandrocoan/pythondebugtools/build/job/sv5bkd8110pbx86o This is a build where I specified the `include` setting: 1. https://ci.appveyor.com/project/evandrocoan/pythondebugtools/builds/19475948/job/l7n8b10ucl1mwgr6 Took me several hours...

I'm not sure if I've stumbled into a real issue, or just fallen into a documentation hole. I had a bear of a time getting travis-ci set up this time....

I just saw the package repository `Trimmer` using it: 1. https://github.com/jonlabelle/Trimmer 1. https://sonarcloud.io/dashboard?id=org.jonlabelle-github%3ATrimmer%3Amaster The `Trimmer` package does not uses UnitTesting, to run tests on Travis, but do everything by himself...

For example: ``` . |__ tests/ |___a_tests.py |___b_tests.py ``` **a_tests.py** ```python class Tests(): def test_a_test(): print("a") def test_b_test(): print("b") ``` **b_tests.py** ```python class Tests(): def test_c_test(): print("a") def test_d_test(): print("b")...