-
Notifications
You must be signed in to change notification settings - Fork 165
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
324 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# After changing this file, check it on: | ||
# http://lint.travis-ci.org/ | ||
language: python | ||
python: | ||
- "2.6" # sublime text 2 | ||
- "3.3" # sublime text 3 | ||
before_install: | ||
- sudo apt-get install exuberant-ctags | ||
- if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install unittest2; fi | ||
script: | ||
- if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then python -m unittest2.__main__ discover; fi | ||
- if [[ $TRAVIS_PYTHON_VERSION == '3.3' ]]; then python -m unittest discover; fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
#!/usr/bin/env python | ||
|
||
# Based on source from here: https://gist.github.com/edufelipe/1027906 | ||
|
||
"""Backport version of 'subprocess.check_output' for Python 2.6.x""" | ||
|
||
import subprocess | ||
|
||
def check_output(*popenargs, **kwargs): | ||
r"""Run command with arguments and return its output as a byte string. | ||
Backported from Python 2.7 as it's implemented as pure python on stdlib. | ||
>>> check_output(['/usr/bin/python', '--version']) | ||
Python 2.6.2 | ||
""" | ||
process = subprocess.Popen(stdout=subprocess.PIPE, *popenargs, **kwargs) | ||
output, unused_err = process.communicate() | ||
retcode = process.poll() | ||
if retcode: | ||
cmd = kwargs.get("args") | ||
if cmd is None: | ||
cmd = popenargs[0] | ||
error = subprocess.CalledProcessError(retcode, cmd) | ||
error.output = output | ||
raise error | ||
return output |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
Changes in 0.3.7 | ||
================ | ||
|
||
- Resolve regressions caused by multiple previous releases | ||
- General improvements in error handling and other corner cases | ||
- Bug Fixes | ||
|
||
Fixes | ||
===== | ||
|
||
* Ruby: Exception and ? ignored., #177 | ||
* Can't Jump to the definition which defined by #define, #213 | ||
|
||
Resolves | ||
======== | ||
|
||
* Travis-ci Integration, #218 | ||
* Tests aren't cross platform, #219 | ||
* Better formatted build warnings #220 | ||
|
||
******************************************************************************* | ||
|
||
For more detailed information about these changes, run ``git v0.3.6..v0.3.7`` | ||
on the Git repository found [here](https://github.com/SublimeText/CTags). |
Oops, something went wrong.