forked from textmate/latex.tmbundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
25 lines (22 loc) · 819 Bytes
/
tox.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# ------------------------------------------------------------------------------
# Config file for `tox`
#
# [Tox](http://tox.testrun.org/) is a tool for running tests in multiple
# virtualenvs. Tox uses this configuration file to run tests for the Python code
# inside this bundle on all supported Python versions.
# ------------------------------------------------------------------------------
[tox]
envlist = py27, py37
setupdir = {toxinidir}
skipsdist = True
toxworkdir = {homedir}/.tox
[testenv]
commands = '{toxinidir}/Tests/bin/nosetests.sh'
'{toxinidir}/Tests/bin/cramtests.sh'
passenv = DIALOG*, HOME, LANG, TM_*
deps = cram
nose
pyobjc-framework-SystemConfiguration
[flake8]
# Disable warnings about imports not being at top of the file
extend-ignore = E402