From 89b609ea8da416eea1711abaadd5a7a9a11c3cea Mon Sep 17 00:00:00 2001 From: Przemo Firszt Date: Sun, 26 Jul 2015 12:12:42 +0100 Subject: [PATCH] Tests: build with -j2 Suggested & tested by saso --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 9d537d16b..a353d8771 100755 --- a/.travis.yml +++ b/.travis.yml @@ -49,5 +49,5 @@ install: - mkdir build && cd build && cmake ../ script: - - make + - make -j2 - PYTHONPATH=$(pwd)/lib/ python -c "import sys, unittest, FreeCAD, TestApp; sys.exit(0 if unittest.TextTestRunner().run(TestApp.All()).wasSuccessful() else 1)"