Removed lcov testing from travis.

This commit is contained in:
James Goppert
2016-05-09 12:19:26 -04:00
parent dd8ff8db12
commit 4d33092bcb
2 changed files with 2 additions and 4 deletions
+1 -3
View File
@@ -1,13 +1,11 @@
language: c
sudo: true
sudo: false
install:
- sudo apt-get install -y lcov
- pip install --user cpp-coveralls
script:
- cmake -DCMAKE_BUILD_TYPE=Profile -DTESTING=ON -DFORMAT=ON .
- make
- make check_format
- make coverage
- ctest -V
after_success:
- cpp-coveralls -i matrix
+1 -1
View File
@@ -7,7 +7,7 @@ set(VERSION_PATCH "0")
project(matrix CXX)
if (NOT CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE "Debug" CACHE STRING "Build type" FORCE)
set(CMAKE_BUILD_TYPE "Profile" CACHE STRING "Build type" FORCE)
message(STATUS "set build type to ${CMAKE_BUILD_TYPE}")
endif()