Skip to content

Commit

Permalink
systemtests: Enable oVirt Test only if ovirt_server is set
Browse files Browse the repository at this point in the history
  • Loading branch information
sduehr committed Dec 18, 2019
1 parent 0797aee commit b639b49
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion systemtests/CMakeLists.txt
Expand Up @@ -351,9 +351,13 @@ endif()

if(TARGET python-fd)
list(APPEND SYSTEM_TESTS "python-fd-plugin-local-fileset-test")
list(APPEND SYSTEM_TESTS "python-fd-ovirt-plugin-test")
else()
list(APPEND SYSTEM_TESTS_DISABLED "python-fd-plugin-local-fileset-test")
endif()

if(TARGET python-fd AND ovirt_server)
list(APPEND SYSTEM_TESTS "python-fd-ovirt-plugin-test")
else()
list(APPEND SYSTEM_TESTS_DISABLED "python-fd-ovirt-plugin-test")
endif()

Expand Down

0 comments on commit b639b49

Please sign in to comment.