-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rename tests to make it easier to define dependencies
- Loading branch information
Showing
2 changed files
with
9 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,19 @@ | ||
add_test(NAME check_complete_file COMMAND pytest --inputfile=${CMAKE_BINARY_DIR}/test/edm4hep_example.root -v) | ||
|
||
add_test(NAME check_complete_file_rntuple COMMAND pytest --inputfile=${CMAKE_BINARY_DIR}/test/edm4hep_example_rntuple.root -v) | ||
|
||
set_test_env(check_complete_file) | ||
set_test_env(check_complete_file_rntuple) | ||
|
||
set_tests_properties( | ||
check_complete_file | ||
|
||
PROPERTIES | ||
DEPENDS "Create an EDM4hep data file" | ||
DEPENDS create_complete_file | ||
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} | ||
) | ||
|
||
add_test(NAME check_complete_file_rntuple COMMAND pytest --inputfile=${CMAKE_BINARY_DIR}/test/edm4hep_example_rntuple.root -v) | ||
set_test_env(check_complete_file_rntuple) | ||
set_tests_properties( | ||
check_complete_file_rntuple | ||
|
||
PROPERTIES | ||
DEPENDS "Create an EDM4hep data file (RNtuple)" | ||
DEPENDS create_complete_file_rntuple | ||
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} | ||
) |