Files @ d32cbe382db9
Branch filter:

Location: gimmecert/tox.ini

branko
GC-3: Compatability fixes for OpenSSL 1.0/1.1 differences in output.
[tox]
envlist = {py34,py35,py36},lint,doc


[testenv]
whitelist_externals =
  make

basepython =
  py34: python3.4
  py35: python3.5
  py36: python3.6

deps =
  .[test]

commands =
  pytest --basetemp={envtmpdir}
  pytest --basetemp={envtmpdir} functional_tests/

[testenv:lint]
basepython = python3
deps =
  .[testlint]
commands =
  flake8

[testenv:doc]
basepython = python3
deps =
  .[doc]
changedir = {toxinidir}/docs/
commands =
  make html