Switch to pytests, add a tiny bit of smoke test coverage to get something coverage no longer gets

This commit is contained in:
Ross McFarland
2022-01-13 14:26:30 -08:00
parent 32c358af04
commit 3ed6d743e6
6 changed files with 22 additions and 11 deletions
+4
View File
@@ -0,0 +1,4 @@
[pytest]
filterwarnings =
# ovh has apparently vendored an old requests version that hits warnings :-/, it'll go away/move soon enough
ignore::DeprecationWarning:ovh.*:
+2 -9
View File
@@ -1,17 +1,10 @@
build==0.7.0
coverage
mock
nose
nose-no-network
nose-timer
pycodestyle==2.6.0
pyflakes==2.2.0
pytest
pytest-network
readme_renderer[md]==26.0
requests_mock
twine==3.4.2
# Profiling tests...
# nose-cprof
# snakeviz
# ./script/test --with-cprof --cprofile-stats-erase
# snakeviz stats.dat
+3 -1
View File
@@ -36,7 +36,9 @@ grep -r -I --line-number "# pragma: +no.*cover" octodns && {
exit 1
}
coverage run --branch --source=octodns --omit=octodns/cmds/* "$(command -v nosetests)" --with-no-network --with-xunit "$@"
export PYTHONPATH=.:$PYTHONPATH
coverage run --branch --source=octodns --omit=octodns/cmds/* "$(command -v pytest)" --disable-network "$@"
coverage html
coverage xml
coverage report --show-missing
+3 -1
View File
@@ -30,4 +30,6 @@ export ARM_CLIENT_SECRET=
export ARM_TENANT_ID=
export ARM_SUBSCRIPTION_ID=
nosetests --with-no-network "$@"
export PYTHONPATH=.:$PYTHONPATH
pytest --disable-network "$@"
+4
View File
@@ -80,4 +80,8 @@ setup(
python_requires='>=3.6',
url='https://github.com/octodns/octodns',
version=octodns.__VERSION__,
tests_require=(
'pytest',
'pytest-network',
),
)
+6
View File
@@ -3459,6 +3459,12 @@ class TestDynamicRecords(TestCase):
self.assertTrue(rules)
self.assertEqual(a_data['dynamic']['rules'][0], rules[0].data)
# smoke test of _DynamicMixin.__repr__
a.__repr__()
delattr(a, 'values')
a.value = 'abc'
a.__repr__()
def test_simple_aaaa_weighted(self):
aaaa_data = {
'dynamic': {