Fixes to Tests

- Now runs with testr
- flake8 skips contrib
This commit is contained in:
Ziad Sawalha 2014-02-25 16:33:58 -06:00
parent 6c20f95910
commit 6c5bb19fd7
4 changed files with 7 additions and 6 deletions

View File

@ -1,5 +1,5 @@
pbr>=0.5.21,<1.0
python-novaclient==2.15.0
tldextract
pythonwhois
pythonwhois==2.0.5
six==1.5.2
tldextract==1.3.1

0
run_tests.sh Normal file → Executable file
View File

View File

@ -13,6 +13,7 @@
"""Satori DNS Discovery."""
import socket
import unittest
from freezegun import freeze_time
import mock
@ -193,3 +194,6 @@ class TestDNS(utils.TestCase):
def test_domain_info_returns_array_of_strings_whois_data(self):
data = dns.domain_info(self.domain)
self.assertIsInstance(data['whois'][0], str)
if __name__ == "__main__":
unittest.main()

View File

@ -7,9 +7,6 @@ skipdist = True
usedevelop = True
install_command = pip install -U {opts} {packages}
setenv = VIRTUAL_ENV={envdir}
LANG=en_US.UTF-8
LANGUAGE=en_US:en
LC_ALL=C
deps = -r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt
commands = python setup.py testr --testr-args='{posargs}'
@ -29,4 +26,4 @@ downloadcache = ~/cache/pip
[flake8]
ignore = E126,E202,W602,H302,H402
show-source = True
exclude = .venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,build,tools
exclude = .venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,build,tools,satori/contrib