Skip to content

Commit

Permalink
Merge pull request #368 from GEOS-ESM/develop
Browse files Browse the repository at this point in the history
GitFlow: Merge Develop into Main for release
  • Loading branch information
mathomp4 authored Mar 18, 2024
2 parents f91a5e0 + c5ff4ba commit 53d5014
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Deprecated

## [3.43.0] - 2024-03-18

### Changed

- Change `make tests` to only do tests labeled with `ESSENTIAL`. Add new `make tests-all` to run all tests.

## [3.42.0] - 2024-03-08

### Changed
Expand Down
7 changes: 6 additions & 1 deletion esma_support/esma_enable_tests.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,15 @@ find_package(PFUNIT QUIET)

add_custom_target(build-tests)
add_custom_target(tests
COMMAND ${CMAKE_CTEST_COMMAND}
COMMAND ${CMAKE_CTEST_COMMAND} -L 'ESSENTIAL' --output-on-failure
EXCLUDE_FROM_ALL)
add_dependencies(tests build-tests)

add_custom_target(tests-all
COMMAND ${CMAKE_CTEST_COMMAND} --output-on-failure
EXCLUDE_FROM_ALL)
add_dependencies(tests-all build-tests)

# The following forces tests to be built when using "make ctest" even if some targets
# are EXCLUDE_FROM_ALL
# From https://stackoverflow.com/questions/733475/cmake-ctest-make-test-doesnt-build-tests/56448477#56448477
Expand Down

0 comments on commit 53d5014

Please sign in to comment.