run_tests.py: Nice down when running on a dev machine

To avoid destroying productivity.
pull/1403/head
Nirbheek Chauhan 8 years ago
parent 79fcd7054d
commit 2a64a2d00c
  1. 8
      run_tests.py

@ -14,12 +14,18 @@
# See the License for the specific language governing permissions and
# limitations under the License.
import subprocess, sys, shutil
import os
import sys
import shutil
import subprocess
import platform
from mesonbuild import mesonlib
if __name__ == '__main__':
returncode = 0
# Running on a developer machine? Be nice!
if not mesonlib.is_windows() and 'TRAVIS' not in os.environ:
os.nice(20)
print('Running unittests.\n')
if mesonlib.is_linux():
returncode += subprocess.call([sys.executable, 'run_unittests.py', '-v'])

Loading…
Cancel
Save