d33tah
d33tah

Reputation: 11561

Don't run "make test" as a part of Travis CI?

I found that a single-line language: c .travis.yml file basically does all I need, with the exception that I don't want make test to happen. Is there a way I could make Travis just run ./configure && make?

Upvotes: 3

Views: 1115

Answers (1)

marcelog
marcelog

Reputation: 7180

Have you tried overriding the default test script as described in: https://docs.travis-ci.com/user/languages/c#Default-Test-Script?

Something like:

script:
  ./configure && make

Upvotes: 8

Related Questions