Skip to content

Commit

Permalink
Merge branch 'master' of github.com:andialbrecht/sqlparse
Browse files Browse the repository at this point in the history
  • Loading branch information
andialbrecht committed Oct 25, 2015
2 parents cded58e + 4bb4139 commit 0b6dab4
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ env:
- TOX_ENV=py33
- TOX_ENV=py34
- TOX_ENV=pypy
matrix:
include:
- python: 3.5
env:
- TOX_ENV=py35
before_install:
- sudo apt-get install pypy
install:
Expand Down
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,8 @@ def get_version():
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Database',
'Topic :: Software Development'
],
Expand Down
11 changes: 10 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist=py26,py27,py32,py33,py34,pypy
envlist=py26,py27,py32,py33,py34,py35,pypy

[testenv]
deps=
Expand Down Expand Up @@ -35,3 +35,12 @@ commands=
cp -r {toxinidir}/tests/ tests/
2to3 -w --no-diffs -n tests/
py.test --cov={envdir}/lib/python3.4/site-packages/sqlparse/ tests

[testenv:py35]
changedir={envdir}
commands=
sqlformat --version # Sanity check.
rm -rf tests/
cp -r {toxinidir}/tests/ tests/
2to3 -w --no-diffs -n tests/
py.test --cov={envdir}/lib/python3.5/site-packages/sqlparse/ tests

0 comments on commit 0b6dab4

Please sign in to comment.