mirror of https://github.com/CIRCL/PyCIRCLean
Add condition skip to filecheck logging tests
parent
8c4ed4617a
commit
21a3feb40d
|
@ -4,7 +4,14 @@
|
||||||
import os
|
import os
|
||||||
from datetime import datetime
|
from datetime import datetime
|
||||||
|
|
||||||
from bin.filecheck import KittenGroomerFileCheck
|
import pytest
|
||||||
|
|
||||||
|
try:
|
||||||
|
from bin.filecheck import KittenGroomerFileCheck
|
||||||
|
NODEPS = False
|
||||||
|
except ImportError:
|
||||||
|
NODEPS = True
|
||||||
|
pytestmark = pytest.mark.skipif(NODEPS, reason="Dependencies aren't installed")
|
||||||
|
|
||||||
|
|
||||||
def save_logs(groomer, test_description):
|
def save_logs(groomer, test_description):
|
||||||
|
|
Loading…
Reference in New Issue