aboutsummaryrefslogtreecommitdiffstats
path: root/tox.ini
Commit message (Collapse)AuthorAgeFilesLines
* remove python setup.py testMike Bayer2019-07-311-3/+2
| | | | | | | | | | | | | | | | | Removed the "python setup.py test" feature in favor of a straight run of "tox". Per Pypa / pytest developers, "setup.py" commands are in general headed towards deprecation in favor of tox. The tox.ini script has been updated such that running "tox" with no arguments will perform a single run of the test suite against the default installed Python interpreter. .. seealso:: https://github.com/pypa/setuptools/issues/1684 https://github.com/pytest-dev/pytest/issues/5534 Fixes: #303 Change-Id: I345fd46f8911a71c039adf2d51937175142db793
* Bump Python versions, remove conditional importsMike Bayer2019-07-271-2/+2
| | | | | | | | | | | | | | | | | | | | | | Mako 1.1 now supports Python versions: * 2.7 * 3.4 and higher This includes that setup.py no longer includes any conditionals, allowing for a pure Python wheel build, however this is not necessarily part of the Pypi release process as of yet. The test suite also raises for Python deprecation warnings. Fixes: #249 Replaced usage of ``inspect.getfullargspec()`` with the vendored version used by SQLAlchemy, Alembic to avoid future deprecation warnings. Also cleans up an additional version of the same function that's apparently been floating around for some time. Fixes: #295 Change-Id: I98274c16b6022289d1890f4daf532bab323ab112
* use timeit.default_timer instead of time.clock() / time.time()Christoph Reiter2019-07-271-0/+1
| | | | | | | | | | | | | | Replaced usage of time.clock() on windows as well as time.time() elsewhere for microsecond timestamps with timeit.default_timer(), as time.clock() is being removed in Python 3.8. Pull request courtesy Christoph Reiter. Fixes: #301 Closes: #302 Pull-request: https://github.com/sqlalchemy/mako/pull/302 Pull-request-sha: a706e952727337702692fd1d8369d259e1600d6e Change-Id: I24e2cd3d2c02323a6fa2b063e86cabe555df2036
* - modernize tox, travis versionsMike Bayer2019-05-311-3/+1
| | | | | | | - fix MANIFEST to remove old names, add tox.ini - reformat .gitignore Change-Id: I450672f92ebfb43a023df502de795f24ad809884
* Use tox / zimportsMike Bayer2019-05-311-6/+12
| | | | Change-Id: Ia047c7052a6d242c2cf1c7a83981f1e38ea4d928
* Add Constant to _ast_utilMike Bayer2019-03-201-1/+1
| | | | | | | | Python 3.8 seems to require this be present for expression generation to succeed. Fixes: #287 Change-Id: I4a3ac22c74e3c96f5f15d349fc8fe2523d6e7def
* - add py37Mike Bayer2018-06-281-1/+1
| | | | Change-Id: I151a2351a7fadffd99c843e70c1504135a2c56c6
* Test on Python 3.5 and 3.6Hugo2018-01-151-1/+1
|
* - use py.test as default test runnerMike Bayer2016-03-101-4/+18
| | | | | - upgrade tox file to use py35, coverage, etc. - add flake8 rules
* - cap lingua at <4 for the moment, references #255Mike Bayer2016-03-091-1/+1
|
* Tox test improvements:Gabi Davar2015-08-271-4/+12
| | | | | * add all deps to tox * ignore test products
* - add mock dependencyMike Bayer2015-07-261-2/+3
|
* - add tox fileMike Bayer2015-07-241-0/+7