twolfson / sublime-plugin-tests

Testing framework for Sublime Text plugins
The Unlicense
22 stars 2 forks source link

Test multiple environments via Travis CI #9

Closed twolfson closed 10 years ago

twolfson commented 10 years ago

As mentioned in #1, we should test against multiple environments. Now that we have Travis CI set up, we are in an advantageous situation to test out all combinations with virtually no cost.

(Python 2, Python 3) x (Sublime Text 2, Sublime Text 3)
twolfson commented 10 years ago

Beginning work on dev/test.sublime.text.3. TODO's for next time:

twolfson commented 10 years ago

Sublime Text 3 should work in Travis as it is working in Vagrant. Unfortunately, it does not which is extremely frustrating. I have disabled it for now but I bet we are really close yet missing something.

twolfson commented 10 years ago

After talking in IRC and some more debugging, Sublime Text 3 is working in Travis =D

twolfson commented 10 years ago

Python 3 was a simple update to coerce byte strings to normal strings. We are testing all combinations as of 0.4.0 (technically, we only need orthogonal testing -- Python 2 + ST2, Python 3 + ST3) but this is for extra comfort.