mirror of
https://github.com/certbot/certbot.git
synced 2026-05-28 04:34:11 -04:00
skip apache/nginx tests if their dependencies aren't installed
This commit is contained in:
parent
54318c04e9
commit
6d2e9d0fac
2 changed files with 11 additions and 0 deletions
|
|
@ -1 +1,7 @@
|
|||
"""certbot-apache tests"""
|
||||
|
||||
import pytest
|
||||
|
||||
|
||||
# Make sure we're only running these tests if our apache plugin dependencies are installed
|
||||
pytest.importorskip("augeas")
|
||||
|
|
|
|||
|
|
@ -1 +1,6 @@
|
|||
"""certbot-nginx tests"""
|
||||
import pytest
|
||||
|
||||
|
||||
# Make sure we're only running these tests if our nginx plugin dependencies are installed
|
||||
pytest.importorskip("pyparsing")
|
||||
|
|
|
|||
Loading…
Reference in a new issue