Browse Source

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

pull/851/head
Ross McFarland 4 years ago
parent
commit
3ed6d743e6
No known key found for this signature in database GPG Key ID: 943B179E15D3B22A
6 changed files with 22 additions and 11 deletions
  1. +4
    -0
      pytest.ini
  2. +2
    -9
      requirements-dev.txt
  3. +3
    -1
      script/coverage
  4. +3
    -1
      script/test
  5. +4
    -0
      setup.py
  6. +6
    -0
      tests/test_octodns_record.py

+ 4
- 0
pytest.ini 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
requirements-dev.txt 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
script/coverage 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
script/test 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
- 0
setup.py 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
- 0
tests/test_octodns_record.py 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': {


Loading…
Cancel
Save