Files @ f2df385b1493
Branch filter:

Location: gimmecert/tox.ini

branko
GC-3: Added ability to provide custom CA base name to init command:

- Added functional test to cover the new scenario (providing CA base
name).
- Updated init command to accept the CA base name to be used when
constructing the CA subject DN.
- Updated the existing tests to pass-in the CA base name explicitly.
- Updated the CLI code to allow for user to pass-in the CA base name
via option (both short and long form available).
[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