Skip to content

Commit

Permalink
Merge pull request #258 from bareos/dev/franku/master/python-plugin-test
Browse files Browse the repository at this point in the history
systemtests: add test only if pyhton-devel available
  • Loading branch information
joergsteffens committed Aug 29, 2019
2 parents b0e62a1 + e861ae3 commit 61a9068
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion systemtests/CMakeLists.txt
Expand Up @@ -187,7 +187,6 @@ set(SYSTEM_TESTS
copy-bscan
copy-remote-bscan
bconsole-status-client
python-fd-plugin-local-fileset-test
)

set(SYSTEM_TESTS_DISABLED
Expand Down Expand Up @@ -252,6 +251,12 @@ ELSE()
list(APPEND SYSTEM_TESTS_DISABLED "webui-selenium")
ENDIF()

IF(PYTHONLIBS_FOUND)
list(APPEND SYSTEM_TESTS "python-fd-plugin-local-fileset-test")
ELSE()
list(APPEND SYSTEM_TESTS_DISABLED "python-fd-plugin-local-fileset-test")
ENDIF()

set(BASEPORT 42001)

foreach(TEST_NAME ${SYSTEM_TESTS})
Expand Down

0 comments on commit 61a9068

Please sign in to comment.