diff --git a/.travis.yml b/.travis.yml index c3fe269..907f19b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -16,6 +16,7 @@ env: jobs: - TestModules=1 STABLE=1 SCENARIO=default - TestModules=1 STABLE=1 SCENARIO=netns + - EvalModules=1 STABLE=1 - PKG=hwi STABLE=1 - PKG=hwi STABLE=0 - PKG=lightning-charge STABLE=1 @@ -34,6 +35,12 @@ env: - PKG=joinmarket STABLE=0 script: - printf '%s (%s)\n' "$NIX_PATH" "$VER" + # + - | + if [[ $EvalModules ]]; then + test/run-tests.sh --scenario full eval + travis_terminate 0 + fi - | getBuildExpr() { if [[ $TestModules ]]; then diff --git a/test/run-tests.sh b/test/run-tests.sh index 5f99609..8e9b5e6 100755 --- a/test/run-tests.sh +++ b/test/run-tests.sh @@ -169,6 +169,7 @@ build() { else scenario=default buildTest "$@" scenario=netns buildTest "$@" + scenario=full evalTest "$@" fi }