Skip to content

Commit

Permalink
ignore volatility test. I'm not uplaoding vol memdump to travis.
Browse files Browse the repository at this point in the history
  • Loading branch information
trolldbois committed Sep 9, 2015
1 parent f0d9f9c commit 2733ee2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def run(self):
test_suite= "test.alltests",
# https://pythonhosted.org/setuptools/setuptools.html
# prep_test requires ctypeslib2
# tests_require=["volatility", "ctypeslib2>2.1.3"],
#tests_require=["volatility"],
# tests_require=["ctypeslib2>2.1.3"],
#entry_points = {'haystack.plugins':['haystack.model:register']},
cmdclass={
Expand Down
5 changes: 4 additions & 1 deletion test/haystack/mappings/test_vol.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@
import logging
import unittest

from haystack.mappings.vol import VolatilityProcessMapper
try:
from haystack.mappings.vol import VolatilityProcessMapper
except ImportError,e:
unittest.skip('Volatility not installed')

from test.testfiles import zeus_1668_vmtoolsd_exe
from test.testfiles import zeus_856_svchost_exe
Expand Down

0 comments on commit 2733ee2

Please sign in to comment.