2017-02-02 17:28:16 +01:00
|
|
|
[tox]
|
2018-10-03 17:57:31 +02:00
|
|
|
envlist = py27,py34,py35,py36,py37,style,isort-check,packaging
|
2017-02-02 17:28:16 +01:00
|
|
|
|
|
|
|
[testenv]
|
2017-04-18 10:48:04 +02:00
|
|
|
deps =
|
2018-04-06 20:25:06 +02:00
|
|
|
-U
|
|
|
|
tox
|
|
|
|
pytest
|
|
|
|
pytest-cov
|
|
|
|
coverage
|
2018-04-23 17:04:28 +02:00
|
|
|
taxii2-client
|
2018-04-23 20:26:26 +02:00
|
|
|
medallion
|
2017-04-18 10:48:04 +02:00
|
|
|
commands =
|
2018-07-10 20:39:20 +02:00
|
|
|
pytest --ignore=stix2/test/v20/test_workbench.py --ignore=stix2/test/v21/test_workbench.py --cov=stix2 stix2/test/ --cov-report term-missing
|
|
|
|
pytest stix2/test/v20/test_workbench.py --cov=stix2 --cov-report term-missing --cov-append
|
|
|
|
pytest stix2/test/v21/test_workbench.py --cov=stix2 --cov-report term-missing --cov-append
|
2017-04-18 10:48:04 +02:00
|
|
|
|
|
|
|
passenv = CI TRAVIS TRAVIS_*
|
2017-02-02 17:28:16 +01:00
|
|
|
|
2018-04-11 21:40:52 +02:00
|
|
|
[testenv:style]
|
2017-03-22 14:13:14 +01:00
|
|
|
deps =
|
|
|
|
flake8
|
|
|
|
commands =
|
2017-09-11 16:28:46 +02:00
|
|
|
flake8
|
2017-02-02 17:28:16 +01:00
|
|
|
|
2017-04-07 22:36:42 +02:00
|
|
|
[flake8]
|
2018-04-06 20:25:06 +02:00
|
|
|
max-line-length = 160
|
2017-04-07 22:36:42 +02:00
|
|
|
|
2017-05-09 21:10:53 +02:00
|
|
|
[testenv:isort-check]
|
|
|
|
deps = isort
|
2017-07-14 22:02:29 +02:00
|
|
|
commands =
|
2018-04-06 20:25:06 +02:00
|
|
|
isort -rc stix2 examples -df
|
|
|
|
isort -rc stix2 examples -c
|
|
|
|
|
2018-05-02 19:37:44 +02:00
|
|
|
[testenv:packaging]
|
|
|
|
deps =
|
|
|
|
readme_renderer
|
|
|
|
commands =
|
|
|
|
python setup.py check -r -s
|
|
|
|
|
2017-02-02 17:28:16 +01:00
|
|
|
[travis]
|
|
|
|
python =
|
2018-04-11 21:40:52 +02:00
|
|
|
2.7: py27, style
|
|
|
|
3.4: py34, style
|
|
|
|
3.5: py35, style
|
2018-05-02 19:37:44 +02:00
|
|
|
3.6: py36, style, packaging
|
2018-10-03 17:57:31 +02:00
|
|
|
3.7: py37, style
|