blob: da487f296e0f5cc97a25f3fe6a7152ad91ef8c24 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# content of: tox.ini , put in same dir as setup.py
[tox]
envlist = py27,py35
[testenv]
deps=
Flask
connexion
pytest
requests
six
setenv =
CONSUL_HOST = 8.8.8.8
HOSTNAME = config_binding_service
commands=pytest
|