Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove all files, redirect to GitHub.HEADmaster | Matth?us G. Chajdas | 2019-11-10 | 1 | -138/+0 |
| | |||||
* | Fixup all headers and some more minor problems.2.4.2 | Georg Brandl | 2019-05-28 | 1 | -1/+1 |
| | |||||
* | Copyright update. | Georg Brandl | 2017-01-22 | 1 | -1/+1 |
| | |||||
* | Provide explanation when a test is skipped | John Vandenberg | 2016-09-20 | 1 | -1/+1 |
| | | | | | | | SkipTest messages are shown when running the test suite with verbosity, such as `nosetests -v`. They help the user see how to fix the problem, in order to achieve higher coverage when running the test suite. | ||||
* | allow running of a single example file test... | Kurt Neufeld | 2016-06-02 | 1 | -0/+4 |
| | | | | | | | set environment variable TEST_EXT to desired test file extension before running tests. eg. TEST_EXT=md nosetests tests/test_examplefiles.py | ||||
* | Copyright year update. | Georg Brandl | 2015-01-21 | 1 | -1/+1 |
| | |||||
* | Skip known-failing tests on Jython | Tim Hatch | 2014-10-15 | 1 | -1/+9 |
| | |||||
* | Closes #980: fix DeprecationWarnings (mostly due to files closed by __del__) ↵ | Georg Brandl | 2014-10-07 | 1 | -13/+5 |
| | | | | | | on Py3. Also fix a bunch of other uses of open() to use the with statement. | ||||
* | make test with -v a bit easier on the eyes | Georg Brandl | 2014-09-20 | 1 | -8/+9 |
| | |||||
* | Do not pass the stats dict, it screws up -v output | Georg Brandl | 2014-09-20 | 1 | -5/+8 |
| | |||||
* | Fix unit display. | Georg Brandl | 2014-09-20 | 1 | -2/+2 |
| | |||||
* | Keep track of speed stats in test_examplefiles and print a list of slowest ↵ | Georg Brandl | 2014-09-20 | 1 | -2/+22 |
| | | | | absolute/relative lexers at the end (run with TEST=-s to see). | ||||
* | Finalize single-source port for Py2.[67] and Py3.3+. | Georg Brandl | 2014-01-18 | 1 | -4/+4 |
| | |||||
* | manual prettifying and small fixes after futurize run | Georg Brandl | 2014-01-18 | 1 | -0/+1 |
| | |||||
* | futurizing: move to print_function and "except X as Y" syntax | Georg Brandl | 2014-01-18 | 1 | -5/+6 |
| | |||||
* | new year in copyright notice | Georg Brandl | 2014-01-10 | 1 | -1/+1 |
| | |||||
* | Whitespace cleanup. | Georg Brandl | 2014-01-10 | 1 | -1/+1 |
| | |||||
* | examplefiles test: change logic to actually lex each file with the intended ↵ | Georg Brandl | 2014-01-09 | 1 | -11/+17 |
| | | | | lexer | ||||
* | Added lexer for new Hy language, a variant of Lisp running | Bob Tolbert | 2013-09-08 | 1 | -1/+4 |
| | | | | | | | | | | | | | | | | on Python. See: http://hylang.org Note that this shares a file extension with the Hybris language but the analyse_text() function does a good job of making the distinction. This did however require one change to the tests to actually pass the code of the test file to get_lexer_for_filename() so that the tests would differentiate Hy from Hybris. And while this is a Lisp and shares some syntax with Clojure, it has been added to the agile.py file to share the lists of keywords and builtins with the PythonLexer. | ||||
* | Happy new year 2013. | Georg Brandl | 2013-01-09 | 1 | -1/+1 |
| | |||||
* | Remove BOM when the input is unicode. | Andy Li | 2012-12-12 | 1 | -1/+2 |
| | |||||
* | fixed #822 (remove BOM if present) | Andy Li | 2012-12-08 | 1 | -0/+1 |
| | |||||
* | Fixes #748: clean up deprecation and resource warnings in the test suite ↵ | Georg Brandl | 2012-03-11 | 1 | -1/+5 |
| | | | | when run with python3 -Wd. | ||||
* | Copyright update. | Georg Brandl | 2012-02-05 | 1 | -1/+1 |
| | |||||
* | Show more info about error token failures. | Georg Brandl | 2012-02-04 | 1 | -2/+3 |
| | |||||
* | Fix current copyright year. | Georg Brandl | 2011-07-09 | 1 | -1/+1 |
| | |||||
* | When displaying a roundtrip error, show the diff | Tim Hatch | 2011-03-14 | 1 | -0/+2 |
| | |||||
* | merge with tim | Georg Brandl | 2010-08-22 | 1 | -2/+35 |
|\ | |||||
| * | Allow storing and comparing output between test runs. | Georg Brandl | 2010-07-22 | 1 | -2/+35 |
| | | |||||
* | | Merge with -main | thatch | 2010-05-05 | 1 | -0/+3 |
|\ \ | |/ |/| | |||||
| * | Exclude editor temp files from examplefiles tests | thatch | 2010-05-05 | 1 | -0/+3 |
| | | |||||
* | | Remove unused imports. | Georg Brandl | 2010-02-18 | 1 | -2/+0 |
|/ | |||||
* | Happy new year! | Georg Brandl | 2010-01-01 | 1 | -1/+1 |
| | |||||
* | Unbreak examplefile tests with DOS newlines. | thatch | 2009-06-21 | 1 | -0/+1 |
| | | | | | This appears to have been broken in the last commit to this file, for Py3k compat in a88f6c3aefe0 by removing universal newline mode. | ||||
* | Port Pygments to Python 3.1. | gbrandl | 2009-03-31 | 1 | -3/+3 |
| | |||||
* | Update copyrighting style to standard "team" tags. | gbrandl | 2009-01-04 | 1 | -2/+2 |
| | | | | Update AUTHORS file accordingly. | ||||
* | In the tests, be more clear about what lexer generated an error token | thatch | 2008-12-31 | 1 | -1/+2 |
| | |||||
* | file() -> open() in tests. | gbrandl | 2008-11-25 | 1 | -1/+1 |
| | |||||
* | Next version will be 1.0. | gbrandl | 2008-11-15 | 1 | -1/+4 |
| | |||||
* | Make test_examplefiles show a better error when there are strange files | thatch | 2008-09-24 | 1 | -0/+5 |
| | | | | hanging out in the examplefiles dir. | ||||
* | make use of test generators for test_examplefiles | Benjamin Peterson | 2008-09-18 | 1 | -30/+24 |
| | |||||
* | remove __builtin__.testdir/testfile magic | Benjamin Peterson | 2008-09-18 | 1 | -0/+1 |
| | | | | This adds a new file tests/support.py | ||||
* | Use specific exception. | gbrandl | 2008-07-05 | 1 | -3/+4 |
| | |||||
* | [svn] Shorten some testfiles, silence some pylint warnings, | gbrandl | 2007-02-14 | 1 | -1/+1 |
| | | | | add a latex formatter unittest. | ||||
* | [svn] Copyright notice update. | gbrandl | 2007-02-04 | 1 | -1/+1 |
| | |||||
* | [svn] Change Pygments license to BSD. | gbrandl | 2006-12-10 | 1 | -1/+1 |
| | |||||
* | [svn] make check. | gbrandl | 2006-10-31 | 1 | -2/+2 |
| | |||||
* | [svn] Add encoding support. All processing is now done with unicode strings. | gbrandl | 2006-10-31 | 1 | -3/+4 |
| | |||||
* | [svn] Name change, round 4 (rename SVN root folder). | gbrandl | 2006-10-19 | 1 | -0/+49 |