diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2020-01-02 08:57:26 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2020-01-02 09:00:22 -0800 |
commit | d0e52140e586e4f9537738177d54400a855b7d2b (patch) | |
tree | e2e06fbee45e411c0d1d9a0e0286f7689059b2ef /tests | |
parent | 30b123bd44102fbc062c3a8423249caea97794c2 (diff) | |
download | subsurface-d0e52140e586e4f9537738177d54400a855b7d2b.tar.gz |
build system: disable TestGitStorage
While this appears to work fine when tested individually, when running
as part of the GitHub actions it causes random failures. This needs to
be rethought.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index fde1210b0..55215392b 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -111,7 +111,7 @@ TEST(TestParsePerformance testparseperformance.cpp) TEST(TestPlan testplan.cpp) TEST(TestDiveSiteDuplication testdivesiteduplication.cpp) TEST(TestRenumber testrenumber.cpp) -TEST(TestGitStorage testgitstorage.cpp) +# right now this causes random test failures... TEST(TestGitStorage testgitstorage.cpp) TEST(TestPicture testpicture.cpp) TEST(TestMerge testmerge.cpp) TEST(TestTagList testtaglist.cpp) @@ -148,7 +148,7 @@ add_custom_target(check COMMAND ${CMAKE_CTEST_COMMAND} TestProfile TestGpsCoords TestParse - TestGitStorage + # TestGitStorage TestPlan TestAirPressure TestDiveSiteDuplication |